From aba3ba723ca23d2da2e6fb59700c033f2d6775c0 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Wed, 28 Oct 2020 15:53:22 +0100 Subject: [PATCH] Nomad now speaks IPv6 --- os/config/roles/nomad/templates/nomad.hcl.j2 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/os/config/roles/nomad/templates/nomad.hcl.j2 b/os/config/roles/nomad/templates/nomad.hcl.j2 index 37952db..b5d5d46 100644 --- a/os/config/roles/nomad/templates/nomad.hcl.j2 +++ b/os/config/roles/nomad/templates/nomad.hcl.j2 @@ -1,13 +1,13 @@ addresses { - http = "0.0.0.0" - rpc = "0.0.0.0" - serf = "0.0.0.0" + http = "::" + rpc = "::" + serf = "::" } advertise { - http = "{{ ipv4 }}" - rpc = "{{ ipv4 }}" - serf = "{{ ipv4 }}" + http = "{{ ipv6 }}" + rpc = "{{ ipv6 }}" + serf = "{{ ipv6 }}" } data_dir = "/var/lib/nomad" @@ -18,13 +18,13 @@ server { } consul { - address="127.0.0.1:8500" + address="[::1]:8500" } client { enabled = true #cpu_total_compute = 4000 - servers = ["127.0.0.1:4648"] + servers = ["[::1]:4648"] network_interface = "{{ interface }}" options { docker.privileged.enabled = "true"