You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
623 B

  1. ETCD_DATA_DIR=/var/lib/etcd
  2. ETCD_ADVERTISE_CLIENT_URLS={{ etcd_client_url }}
  3. ETCD_INITIAL_ADVERTISE_PEER_URLS={{ etcd_peer_url }}
  4. ETCD_INITIAL_CLUSTER_STATE={% if etcd_cluster_is_healthy.rc != 0 | bool %}new{% else %}existing{% endif %}
  5. ETCD_LISTEN_CLIENT_URLS=http://{{ etcd_address }}:2379
  6. ETCD_ELECTION_TIMEOUT=10000
  7. ETCD_INITIAL_CLUSTER_TOKEN=k8s_etcd
  8. ETCD_LISTEN_PEER_URLS=http://{{ etcd_address }}:2380
  9. ETCD_NAME={{ etcd_member_name }}
  10. ETCD_PROXY=off
  11. ETCD_INITIAL_CLUSTER={% for host in groups['etcd'] %}etcd{{ loop.index|string }}={{ hostvars[host]['etcd_peer_url'] }}{% if not loop.last %},{% endif %}{% endfor %}