nginx is not being configured properly for IPv6 addresses. It is missing the [] around the IPv6 address before the port. This is causing nginx to fail to start which is needed to start the ephemeral environment.
Currently:
upstream maas-regions {
server 10.0.0.2:5240;
server fc00::216:3eff:fee4:2cd0:5240;
}
What it should be
upstream maas-regions {
server 10.0.0.2:5240;
server [fc00::216:3eff:fee4:2cd0]:5240;
}
nginx is not being configured properly for IPv6 addresses. It is missing the [] around the IPv6 address before the port. This is causing nginx to fail to start which is needed to start the ephemeral environment.
Currently: 3eff:fee4: 2cd0:5240;
upstream maas-regions {
server 10.0.0.2:5240;
server fc00::216:
}
What it should be 216:3eff: fee4:2cd0] :5240;
upstream maas-regions {
server 10.0.0.2:5240;
server [fc00::
}