Skip to content

Commit

Permalink
Merge pull request #8 from slintes/add_condition
Browse files Browse the repository at this point in the history
Add NodeNameChangeExpected condition type
  • Loading branch information
slintes authored Jul 25, 2023
2 parents 74ae260 + 1616a70 commit 3cb76c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/conditions/conditions.go
Original file line number Diff line number Diff line change
@@ -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"
)

0 comments on commit 3cb76c1

Please sign in to comment.