Not able to access container group

sns 9,241 Reputation points
2023-07-23T08:25:12.01+00:00

Error:

User's image

Here is the containter registry

User's image

User's image

Here is the the YAML file where I have ensured every input provided correctly.

User's image

and here is the container not able to deploy:

User's image

Azure Container Registry
Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
480 questions
Azure Container Instances
Azure Container Instances
An Azure service that provides customers with a serverless container experience.
724 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Manu Philip 19,271 Reputation points MVP
    2023-07-23T09:10:07.05+00:00

    Try starting the troubleshooting by examining the correct values of the parameters were used.

    az acr credential show --name acr12345678910
    

    Check, if the correct image name and tags are used:

    az acr repository show-tags --name <acr name> --repository <repository name>

    Double check, if the correct image exists under the acr

    az acr repository list --name <acr name> --output table

    Check, if you have the permission to access the image

    az acr repository show --name <acr name> --repository <repository name> --output table


    --please don't forget to upvote and Accept as answer if the reply is helpful--


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.