summaryrefslogtreecommitdiff
path: root/pkg/common/constants.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/common/constants.go')
-rw-r--r--pkg/common/constants.go38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkg/common/constants.go b/pkg/common/constants.go
index 581cd54..3777088 100644
--- a/pkg/common/constants.go
+++ b/pkg/common/constants.go
@@ -8,44 +8,6 @@ const ImageUpdaterAnnotationPrefix = "argocd-image-updater.argoproj.io"
// allowed for updates.
const ImageUpdaterAnnotation = ImageUpdaterAnnotationPrefix + "/image-list"
-// Defaults for Helm parameter names
-const (
- DefaultHelmImageName = "image.name"
- DefaultHelmImageTag = "image.tag"
-)
-
-// Helm related annotations
-const (
- HelmParamImageNameAnnotation = ImageUpdaterAnnotationPrefix + "/%s.helm.image-name"
- HelmParamImageTagAnnotation = ImageUpdaterAnnotationPrefix + "/%s.helm.image-tag"
- HelmParamImageSpecAnnotation = ImageUpdaterAnnotationPrefix + "/%s.helm.image-spec"
-)
-
-// Kustomize related annotations
-const (
- KustomizeApplicationNameAnnotation = ImageUpdaterAnnotationPrefix + "/%s.kustomize.image-name"
-)
-
-// Image specific configuration annotations
-const (
- OldMatchOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.tag-match" // Deprecated and will be removed
- AllowTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.allow-tags"
- IgnoreTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.ignore-tags"
- ForceUpdateOptionAnnotation = ImageUpdaterAnnotationPrefix + "/%s.force-update"
- UpdateStrategyAnnotation = ImageUpdaterAnnotationPrefix + "/%s.update-strategy"
- PullSecretAnnotation = ImageUpdaterAnnotationPrefix + "/%s.pull-secret"
- PlatformsAnnotation = ImageUpdaterAnnotationPrefix + "/%s.platforms"
-)
-
-// Application-wide update strategy related annotations
-const (
- ApplicationWideAllowTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/allow-tags"
- ApplicationWideIgnoreTagsOptionAnnotation = ImageUpdaterAnnotationPrefix + "/ignore-tags"
- ApplicationWideForceUpdateOptionAnnotation = ImageUpdaterAnnotationPrefix + "/force-update"
- ApplicationWideUpdateStrategyAnnotation = ImageUpdaterAnnotationPrefix + "/update-strategy"
- ApplicationWidePullSecretAnnotation = ImageUpdaterAnnotationPrefix + "/pull-secret"
-)
-
// Application update configuration related annotations
const (
WriteBackMethodAnnotation = ImageUpdaterAnnotationPrefix + "/write-back-method"