summaryrefslogtreecommitdiff
path: root/pkg/common
diff options
context:
space:
mode:
authorIshita Sequeira <46771830+ishitasequeira@users.noreply.github.com>2025-01-14 20:20:42 -0500
committerGitHub <noreply@github.com>2025-01-14 20:20:42 -0500
commit9affc2119baee1307a9d362b14e35712ac778f82 (patch)
tree4a47acf13498a3b0148619ee91d7a9adca59af88 /pkg/common
parent10a01f381aa7d55e9806c7e8df75fee78976cebc (diff)
Replace common constant references (#1011)HEADmaster
Signed-off-by: Ishita Sequeira <ishiseq29@gmail.com>
Diffstat (limited to 'pkg/common')
-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"