skip to Main Content

I am trying to create a new Azure container apps using ARM template.

When deployment, I face this issue

{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-deployment-operations for usage details.","details":[{"code":"ContainerAppOperationError","message":"Failed to provision revision for container app ‘ca-dpsauth-ppe-cus-01’. Error details: Operation expired."}]}

enter image description here

I looked into the troubleshotting guide, but could find none related to this.

Thanks for the answers / suggestions in advance.

2

Answers


  1. Have you tried the operation again, could just be a temporary issue. Can you try via the CLI with the same subscription to see if this is a portal issue.

    Remember, if this is a live site issue you can always open a support ticket from the Azure portal.

    Login or Signup to reply.
  2. It is failing because the referenced ImagePullSecret ca-dpsauth-xxx-xxx-01-xxxxxxxxxxx.azurecr.io was not found in the backend.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search