From 3c450191ea1e55ee775bfc63a9bb620ec97b137f Mon Sep 17 00:00:00 2001 From: Antoine Legrand Date: Thu, 17 Dec 2015 22:47:19 +0100 Subject: [PATCH] User etcd node ip in initial cluster --- roles/etcd/templates/etcd2-environment.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/etcd/templates/etcd2-environment.j2 b/roles/etcd/templates/etcd2-environment.j2 index 6475e437d..01a4eb60d 100644 --- a/roles/etcd/templates/etcd2-environment.j2 +++ b/roles/etcd/templates/etcd2-environment.j2 @@ -8,7 +8,7 @@ ETCD_DATA_DIR="/var/lib/etcd2" {% endfor %} ETCD_ADVERTISE_CLIENT_URLS="http://{{ hostvars[inventory_hostname]['ip'] | default( ansible_default_ipv4.address) }}:2379" ETCD_INITIAL_ADVERTISE_PEER_URLS="http://{{ hostvars[inventory_hostname]['ip'] | default( ansible_default_ipv4.address) }}:2380" -ETCD_INITIAL_CLUSTER="{% for srv in groups['etcd'] %}master{{ loop.index|string }}=http://{{ srv }}:2380{% if not loop.last %},{% endif %}{% endfor %}" +ETCD_INITIAL_CLUSTER="{% for srv in groups['etcd'] %}master{{ loop.index|string }}=http://{{ hostvars[inventory_hostname]['ip'] | default( ansible_default_ipv4.address) }}:2380{% if not loop.last %},{% endif %}{% endfor %}" ETCD_INITIAL_CLUSTER_STATE="new" ETCD_INITIAL_CLUSTER_TOKEN="k8s_etcd" ETCD_LISTEN_CLIENT_URLS="http://{{ hostvars[inventory_hostname]['ip'] | default( ansible_default_ipv4.address) }}:2379,http://127.0.0.1:2379"