From 117893065c616341ba41c013f352c22859ed191e Mon Sep 17 00:00:00 2001 From: Matheus Pimenta Date: Mon, 27 Jan 2025 15:43:41 +0000 Subject: [PATCH] Add InvalidCELExpressionReason to apis/meta Signed-off-by: Matheus Pimenta --- apis/meta/conditions.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apis/meta/conditions.go b/apis/meta/conditions.go index 167e3abae..284db1596 100644 --- a/apis/meta/conditions.go +++ b/apis/meta/conditions.go @@ -148,6 +148,10 @@ const ( // ReconciliationFailedReason represents the fact that // the reconciliation failed. ReconciliationFailedReason string = "ReconciliationFailed" + + // InvalidCELExpressionReason represents the fact that a CEL expression + // in the configuration is invalid. + InvalidCELExpressionReason string = "InvalidCELExpression" ) // ObjectWithConditions describes a Kubernetes resource object with status conditions.