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.

5 lines
327 B

  1. ETCD_DATA_DIR=/var/lib/etcd-proxy
  2. ETCD_PROXY=on
  3. ETCD_LISTEN_CLIENT_URLS={{ etcd_access_endpoint }}
  4. ETCD_NAME={{ etcd_proxy_member_name | default("etcd-proxy") }}
  5. ETCD_INITIAL_CLUSTER={% for host in groups['etcd'] %}etcd{{ loop.index|string }}={{ hostvars[host]['etcd_peer_url'] }}{% if not loop.last %},{% endif %}{% endfor %}