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" )