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.

17 lines
1.4 KiB

  1. ETCD_DATA_DIR="/var/lib/etcd"
  2. {% if inventory_hostname in groups['etcd'] %}
  3. {% set etcd = {} %}
  4. {% for host in groups['etcd'] %}
  5. {% if inventory_hostname == host %}
  6. {% set _dummy = etcd.update({'name':"etcd"+loop.index|string}) %}
  7. {% endif %}
  8. {% endfor %}
  9. ETCD_ADVERTISE_CLIENT_URLS="http://{{ hostvars[inventory_hostname]['access_ip'] | default(hostvars[inventory_hostname]['ip'] | default( hostvars[inventory_hostname]['ansible_default_ipv4']['address'])) }}:2379"
  10. ETCD_INITIAL_ADVERTISE_PEER_URLS="http://{{ hostvars[inventory_hostname]['access_ip'] | default(hostvars[inventory_hostname]['ip'] | default( hostvars[inventory_hostname]['ansible_default_ipv4']['address'])) }}:2380"
  11. ETCD_INITIAL_CLUSTER_STATE="new"
  12. ETCD_INITIAL_CLUSTER_TOKEN="k8s_etcd"
  13. ETCD_LISTEN_PEER_URLS="http://{{ hostvars[inventory_hostname]['ip'] | default( hostvars[inventory_hostname]['ansible_default_ipv4']['address']) }}:2380"
  14. ETCD_NAME="{{ etcd.name }}"
  15. {% endif %}
  16. ETCD_INITIAL_CLUSTER="{% for host in groups['etcd'] %}etcd{{ loop.index|string }}=http://{{ hostvars[host]['access_ip'] | default(hostvars[host]['ip'] | default(hostvars[host]['ansible_default_ipv4']['address'])) }}:2380{% if not loop.last %},{% endif %}{% endfor %}"
  17. ETCD_LISTEN_CLIENT_URLS="http://{{ hostvars[inventory_hostname]['ip'] | default( hostvars[inventory_hostname]['ansible_default_ipv4']['address']) }}:2379,http://127.0.0.1:2379"