From 8bbfc4072b0e6ff5f7aa8afe82be9e5a4bc64adf Mon Sep 17 00:00:00 2001 From: Veronika Fisarova Date: Thu, 26 Oct 2023 12:33:39 +0200 Subject: [PATCH] Add TLSInputReadyCondition and TLSInputErrorMessage Indicating the condition when required TLS sources are ready or error occured. Signed-off-by: Veronika Fisarova --- modules/common/condition/conditions.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/common/condition/conditions.go b/modules/common/condition/conditions.go index 31275955..242b638d 100644 --- a/modules/common/condition/conditions.go +++ b/modules/common/condition/conditions.go @@ -73,6 +73,9 @@ const ( // RoleBindingReadyCondition Status=True condition RoleBindingReadyCondition Type = "RoleBindingReady" + + // TLSInputReadyCondition Status=True condition when required TLS sources are ready + TLSInputReadyCondition Type = "TLSInputReady" ) // Common Reasons used by API objects. @@ -292,6 +295,9 @@ const ( // AnsibleEEReadyErrorMessage AnsibleEEReadyErrorMessage = "AnsibleEE error occurred %s" + + // TLSInputErrorMessage - Provides the message when there's error in provision of TLS sources + TLSInputErrorMessage = "TLSInput error occured in TLS sources %s" ) // Common Messages used for service accounts, roles, role bindings