From 1616a7078d1f3e0f8853aca6af5fa832375b8f93 Mon Sep 17 00:00:00 2001 From: Marc Sluiter Date: Sat, 22 Jul 2023 13:13:33 +0200 Subject: [PATCH] Add PermanentNodeDeletionExpected condition type --- pkg/conditions/conditions.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/conditions/conditions.go b/pkg/conditions/conditions.go index 05b00c0..fc84e50 100644 --- a/pkg/conditions/conditions.go +++ b/pkg/conditions/conditions.go @@ -1,8 +1,13 @@ package conditions const ( + + // These are condition types used on remediation CRs + // ProcessingType is the condition type used to signal the remediation has started and it is in progress, or has finished ProcessingType = "Processing" // SucceededType is the condition type used to signal whether the remediation was successful or not SucceededType = "Succeeded" + // PermanentNodeDeletionExpectedType is the condition type used to signal that the unhealthy node will be permanently deleted. + PermanentNodeDeletionExpectedType = "PermanentNodeDeletionExpected" )