Add AWS ECR error message for tag Immutability (#3045)

This commit is contained in:
Jérémie Augustin 2024-03-19 07:01:34 +01:00 committed by GitHub
parent 8a8323a37d
commit 8148159c30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -67,6 +67,8 @@ var (
errTagImmutable = []string{
// https://cloud.google.com/artifact-registry/docs/docker/troubleshoot#push
"The repository has enabled tag immutability",
// https://docs.aws.amazon.com/AmazonECR/latest/userguide/image-tag-mutability.html
"cannot be overwritten because the repository is immutable",
}
)