0

Getting below error while deleting ACR repository or image.

Command: $ az acr repository delete --name pocacr2021 -repository repoNodeBulletin

Error: The requested data does not exist. Correlation Id:xxxx-xxxxx-xxxx-xxxxx

Kotha Ramesh Babu
  • 355
  • 1
  • 4
  • 10

1 Answers1

0

Error was coming due to passing repository name should be lower case. It won't allow upper or mixed case.

Wrong Command: $ az acr repository delete --name pocacr2021 -repository repoNodeBulletin

Correct Command: $ az acr repository delete --name pocacr2021 -repository reponodebulletin

Kotha Ramesh Babu
  • 355
  • 1
  • 4
  • 10