summaryrefslogtreecommitdiff
path: root/pkg/common
diff options
context:
space:
mode:
authorjannfis <jann@mistrust.net>2020-09-27 18:32:55 +0200
committerGitHub <noreply@github.com>2020-09-27 18:32:55 +0200
commitfa95873da285ee00713e4041d117ad37f43d899e (patch)
tree54c0854c6b84df057f27e6836a8ae5dacdaa9b74 /pkg/common
parente91e51390bf6e4b78bbad96a39219c16504c9491 (diff)
refactor: Introduce allow-tags and deprecate tag-match annotation (#103)
Diffstat (limited to 'pkg/common')
-rw-r--r--pkg/common/constants.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/common/constants.go b/pkg/common/constants.go
index 847fe39..ae3d5b8 100644
--- a/pkg/common/constants.go
+++ b/pkg/common/constants.go
@@ -28,7 +28,8 @@ const (
// Upgrade strategy related annotations
const (
- MatchOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.tag-match"
+ OldMatchOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.tag-match" // Deprecated and will be removed
+ AllowTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.allow-tags"
IgnoreTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.ignore-tags"
UpdateStrategyAnnotation = ImageUpdaterAnnotationPrefix + "/%s.update-strategy"
)