Skip to content

Commit

Permalink
Update etcd to recent version in kubeadm manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
caseydavenport committed Jul 20, 2017
1 parent d304ed2 commit 86df029
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ spec:
hostNetwork: true
containers:
- name: calico-etcd
image: gcr.io/google_containers/etcd:2.2.1
image: quay.io/coreos/etcd:v3.1.10
env:
- name: CALICO_ETCD_IP
valueFrom:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ spec:
hostNetwork: true
containers:
- name: calico-etcd
image: gcr.io/google_containers/etcd:2.2.1
image: quay.io/coreos/etcd:v3.1.10
env:
- name: CALICO_ETCD_IP
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion master/getting-started/mesos/installation/dc-os/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ the need for etcd-proxy:
(available at http://m1.dcos:2379):

```shell
docker run -d --net=host --name=etcd quay.io/coreos/etcd:v2.0.11 \
docker run -d --net=host --name=etcd quay.io/coreos/etcd:v3.1.10 \
--advertise-client-urls "http://m1.dcos:2379" \
--listen-client-urls "http://m1.dcos:2379,http://127.0.0.1:2379" \
```
Expand Down
2 changes: 1 addition & 1 deletion master/getting-started/mesos/installation/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ or replaced `$ETCD_IP` and `$ETCD_PORT`:
```shell
docker run --detach \
--net=host \
--name etcd quay.io/coreos/etcd:v2.0.11 \
--name etcd quay.io/coreos/etcd:v3.1.10 \
--advertise-client-urls "http://$ETCD_IP:$ETCD_PORT" \
--listen-client-urls "http://$ETCD_IP:$ETCD_PORT,http://127.0.0.1:$ETCD_PORT"
```
Expand Down

0 comments on commit 86df029

Please sign in to comment.