From 8148159c3098fbe572de86490207e7c692a940b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Augustin?= <564420+jaugustin@users.noreply.github.com> Date: Tue, 19 Mar 2024 07:01:34 +0100 Subject: [PATCH] Add AWS ECR error message for tag Immutability (#3045) --- pkg/executor/push.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/executor/push.go b/pkg/executor/push.go index 577de27710..c95aecc351 100644 --- a/pkg/executor/push.go +++ b/pkg/executor/push.go @@ -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", } )