Dear community,
I’m currently running haproxy using nomad with a default private network and a public interface (like given example client Block - Agent Configuration | Nomad | HashiCorp Developer)
My nomad configuration is:
client {
host_network "public" {
interface = "ens3"
}
)
My haproxy network configuration is:
network {
port "http" {
static = 80
to = 8080
host_network = "public"
}
port "https" {
static = 443
to = 4433
host_network = "public"
}
}
My public interface has an ipv4 and an ipv6.
My problem is that when nomad is starting the allocation, it is only listening to the public ipv4.
Is there any ways to make my allocation listen to both ipv4 and ipv6 ?
Thanks for your help