From 15d21f823db8ed89a49967063b50c71322b42d37 Mon Sep 17 00:00:00 2001 From: Disaiah Bennett Date: Wed, 24 Apr 2024 16:58:03 -0400 Subject: [PATCH] [ACM-10803] Updated MCE annotations naming convention (#676) * updated annotations naming convention Signed-off-by: Disaiah Bennett * updated annotations.go Signed-off-by: Disaiah Bennett --------- Signed-off-by: Disaiah Bennett --- pkg/utils/annotations.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/utils/annotations.go b/pkg/utils/annotations.go index a0f57e0e1..d980ecf38 100644 --- a/pkg/utils/annotations.go +++ b/pkg/utils/annotations.go @@ -22,34 +22,34 @@ var ( AnnotationIgnoreOCPVersion is an annotation used to indicate the operator should not check the OpenShift Container Platform (OCP) version before proceeding when set. */ - AnnotationIgnoreOCPVersion = "multicluster.openshift.io/ignore-ocp-version" + AnnotationIgnoreOCPVersion = "installer.multicluster.openshift.io/ignore-ocp-version" DeprecatedAnnotationIgnoreOCPVersion = "ignoreOCPVersion" /* AnnotationImageOverridesCM is an annotation used in multiclusterengine to specify a custom ConfigMap containing image overrides. */ - AnnotationImageOverridesCM = "multicluster.openshift.io/image-overrides-configmap" + AnnotationImageOverridesCM = "installer.multicluster.openshift.io/image-overrides-configmap" DeprecatedAnnotationImageOverridesCM = "imageOverridesCM" /* AnnotationImageRepo is an annotation used in multiclusterengine to specify a custom image repository to use. */ - AnnotationImageRepo = "multicluster.openshift.io/image-repository" + AnnotationImageRepo = "installer.multicluster.openshift.io/image-repository" DeprecatedAnnotationImageRepo = "imageRepository" /* AnnotationKubeconfig is an annotation used to specify the secret name residing in target containing the kubeconfig to access the remote cluster. */ - AnnotationKubeconfig = "multicluster.openshift.io/kubeconfig" + AnnotationKubeconfig = "installer.multicluster.openshift.io/kubeconfig" DeprecatedAnnotationKubeconfig = "mce-kubeconfig" /* AnnotationMCEPause is an annotation used in multiclusterengine to identify if the multiclusterengine is paused or not. */ - AnnotationMCEPause = "multicluster.openshift.io/pause" + AnnotationMCEPause = "installer.multicluster.openshift.io/pause" DeprecatedAnnotationMCEPause = "pause" /* @@ -62,7 +62,7 @@ var ( AnnotationTemplateOverridesCM is an annotation used in multiclusterengine to specify a custom ConfigMap containing resource template overrides. */ - AnnotationTemplateOverridesCM = "operator.multicluster.openshift.io/template-override-cm" + AnnotationTemplateOverridesCM = "installer.multicluster.openshift.io/template-override-configmap" ) /*