fix(docs): remove real discovery token

This commit is contained in:
Rob Szumski 2014-04-09 21:55:19 -07:00
parent 58b091061e
commit 6540d12d25

View File

@ -19,7 +19,9 @@ We can use the templating feature of coreos-cloudinit to automate etcd configura
coreos: coreos:
etcd: etcd:
name: node001 name: node001
discovery: https://discovery.etcd.io/3445fa65423d8b04df07f59fb40218f8 # generate a new token for each unique cluster from https://discovery.etcd.io/new
discovery: https://discovery.etcd.io/<token>
# multi-region and multi-cloud deployments need to use $public_ipv4
addr: $public_ipv4:4001 addr: $public_ipv4:4001
peer-addr: $private_ipv4:7001 peer-addr: $private_ipv4:7001
``` ```
@ -29,7 +31,7 @@ coreos:
``` ```
[Service] [Service]
Environment="ETCD_NAME=node001" Environment="ETCD_NAME=node001"
Environment="ETCD_DISCOVERY=https://discovery.etcd.io/3445fa65423d8b04df07f59fb40218f8" Environment="ETCD_DISCOVERY=https://discovery.etcd.io/<token>"
Environment="ETCD_ADDR=203.0.113.29:4001" Environment="ETCD_ADDR=203.0.113.29:4001"
Environment="ETCD_PEER_ADDR=192.0.2.13:7001" Environment="ETCD_PEER_ADDR=192.0.2.13:7001"
``` ```