From f7230776b17ced1cb7076eec40ec043bc5a23200 Mon Sep 17 00:00:00 2001 From: Michael Shitrit Date: Thu, 14 Mar 2024 15:42:35 +0200 Subject: [PATCH] Add MultipleTemplatesSupportedAnnotation Signed-off-by: Michael Shitrit --- pkg/annotations/annotations.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/annotations/annotations.go b/pkg/annotations/annotations.go index 739e694..800a0e8 100644 --- a/pkg/annotations/annotations.go +++ b/pkg/annotations/annotations.go @@ -3,4 +3,7 @@ package annotations const ( // NhcTimeOut is the annotation set by NHC to signal the operator that it surpassed its timeout and shall stop its remediation NhcTimedOut = "remediation.medik8s.io/nhc-timed-out" + + // MultipleTemplatesSupportedAnnotation is an annotation that indicates whether multiple templates of the same kind are supported by the template's remediator + MultipleTemplatesSupportedAnnotation = "remediation.medik8s.io/multiple-templates-support" )