From 767170d65ffe7540702b2857d6df0aa31e2e4007 Mon Sep 17 00:00:00 2001 From: irbekrm Date: Fri, 6 Jan 2023 18:28:40 +0000 Subject: [PATCH] Adds a new label to cert-manager API Signed-off-by: irbekrm --- pkg/apis/certmanager/v1/types.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkg/apis/certmanager/v1/types.go b/pkg/apis/certmanager/v1/types.go index 3f7310066..3978707aa 100644 --- a/pkg/apis/certmanager/v1/types.go +++ b/pkg/apis/certmanager/v1/types.go @@ -16,8 +16,15 @@ limitations under the License. package v1 -// Common annotation keys added to resources. const ( + + // Common label keys added to resources + + // Label key that indicates that a resource is of interest to cert-manager controller + PartOfCertManagerControllerLabelKey = "controller.cert-manager.io/fao" + + // Common annotation keys added to resources + // Annotation key for DNS subjectAltNames. AltNamesAnnotationKey = "cert-manager.io/alt-names"