0
votes

We run tests on Azure Container Instances. My question is rather simple. Is there a way to assign a public static ip address to the containers? Our tests are running and need connection to certain nodes, but how to allow them that if I don't know what the public address will be?

If not what else as an option there is?

1
Private ip doesn't help instances are accessed outside of the azure network - WhoAmI
Want approach is if I define a OS proxy for containers will that work for all requests towards are destinations? - WhoAmI

1 Answers

0
votes

Unfortunately, it's impossible the assign a static public IP to the Azure Container Instance. Instead, you can create the Container Instance in a VNet, then put the container instance behind an application gateway and assign a static public IP to the application gateway. In this way, you can access the container instance via the static public IP address.