From 2557793cee67469c1871fd384c6c094006a64aa6 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Tue, 27 Oct 2020 22:39:00 +0100 Subject: [PATCH] switch consul to ipv6 --- os/config/roles/consul/templates/consul.json.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/os/config/roles/consul/templates/consul.json.j2 b/os/config/roles/consul/templates/consul.json.j2 index beea1fa..a55d351 100644 --- a/os/config/roles/consul/templates/consul.json.j2 +++ b/os/config/roles/consul/templates/consul.json.j2 @@ -1,14 +1,14 @@ { "data_dir": "/var/lib/consul", - "bind_addr": "0.0.0.0", - "advertise_addr": "{{ ipv4 }}", + "bind_addr": "[::]", + "advertise_addr": "{{ ipv6 }}", "addresses": { - "dns": "0.0.0.0", - "http": "0.0.0.0" + "dns": "[::]", + "http": "[::]" }, "retry_join": [ {% for selected_host in groups['cluster_nodes']|reject("sameas", ansible_fqdn) %}{# @FIXME: Reject doesn't work #} - "{{ hostvars[selected_host]['ipv4'] }}" {{ "," if not loop.last else "" }} + "{{ hostvars[selected_host]['ipv6'] }}" {{ "," if not loop.last else "" }} {% endfor %} ], "bootstrap_expect": 3,