ACI gets no IP assigned after creation via portal

Martin BEDNAR 0 Reputation points
2024-10-08T07:15:58.4+00:00

In Azure, via portal, when I create new Container Instance with public setup and DNS name no IP or FQDN is assigned after creation. Why is that ?

I think it is a portal bug as if I try to create Container Instance from Container Registry (different form) it works fine (IP is assigned).

Azure Container Instances
Azure Container Instances
An Azure service that provides customers with a serverless container experience.
713 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Mounika Reddy Anumandla 825 Reputation points Microsoft Vendor
    2024-10-08T12:17:51.7766667+00:00

    Hi Martin BEDNAR,

    Welcome to the Microsoft Q&A Platform! Thank you for asking your question here.

    It is a known issue, and Product Team is working on rolling out a fix across all the regions. As a work around you can use this private link for resource creation via portal.
    https://ms.portal.azure.com/?feature.canmodifystamps=true&Microsoft_Azure_ContainerService=flight40#home

    or you can use the following link [0] to use the Azure CLI. Please chose to use the Azure Cloud Shell within the Azure Portal to run the commands.

    Azure CLICopy

    # already created a Resource Group via webui and had uploaded a Container Image
    az container create --resource-group RESOURCE_GROUP --name CONTAINER_NAME --image IMAGE --registry-login-server SERVER --registry-username REGISTRY --registry-password PASS --ip-address Public --dns-name-label SOMENAME --ports 80
    az container list --resource-group RESOURCE_GROUP
    az container delete --name CONTAINER_NAME --resource-group RESOURCE_GROUP
    az group list
    az group delete --name RESOURCE_GROUP
     
    

    [0] https://learn.microsoft.com/en-us/answers/questions/2078125/issue-with-missing-ip-address-fqdn-when-provisioni
    https://learn.microsoft.com/en-us/answers/questions/2083328/fqdn-not-shown-for-azure-container-instance

    [1] https://learn.microsoft.com/en-us/cli/azure/container?view=azure-cli-latest#az-container-create-required-parametersUser's image


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.