github.com/argoproj-labs/argocd-operator@v0.10.0/common/annotations.go (about) 1 package common 2 3 const ( 4 // AnnotationName is the annotation on child resources that specifies which ArgoCD instance 5 // name a specific object is associated with 6 AnnotationName = "argocds.argoproj.io/name" 7 8 // AnnotationNamespace is the annotation on child resources that specifies which ArgoCD instance 9 // namespace a specific object is associated with 10 AnnotationNamespace = "argocds.argoproj.io/namespace" 11 12 // AnnotationOpenShiftServiceCA is the annotation on services used to 13 // request a TLS certificate from OpenShift's Service CA for AutoTLS 14 AnnotationOpenShiftServiceCA = "service.beta.openshift.io/serving-cert-secret-name" 15 )