13 lines
639 B
Plaintext
13 lines
639 B
Plaintext
###
|
|
# etcd system config
|
|
#
|
|
|
|
NAME="-name %%NAME%%"
|
|
LISTEN_PEER_URLS="-listen-peer-urls http://%%IP%%:7001,http://127.0.0.1:7001"
|
|
LISTEN_CLIENT_URLS="-listen-client-urls http://%%IP%%:4001,http://127.0.0.1:4001,http://%%IP%%:2379,http://127.0.0.1:2379"
|
|
INITIAL_ADV_PEER_URLS="-initial-advertise-peer-urls http://%%IP%%:7001"
|
|
INITIAL_CLUSTER_STATE="-initial-cluster-state %%STATE%%"
|
|
INITIAL_CLUSTER="-initial-cluster %%CLUSTER_CONFIG%%"
|
|
ADV_CLIENT_URLS="-advertise-client-urls http://%%IP%%:4001,http://127.0.0.1:4001,http://%%IP%%:2379,http://127.0.0.1:2379"
|
|
ETCD_OPTS="-snapshot-count 1000 --heartbeat-interval 500 --election-timeout 2500"
|