Skip to content

Commit 7aace13

Browse files
committed
Adding ConditionTypeRecoverable
1 parent e400157 commit 7aace13

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

apis/core/v1alpha1/conditions.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,12 @@ const (
3232
// - As a result of InvalidArgument in input yaml
3333
// - Resource server state is "create-failed"
3434
ConditionTypeTerminal ConditionType = "ACK.Terminal"
35-
// ConditionTypeNonTerminal indicates that the error may be resolved
35+
// ConditionTypeRecoverable indicates that the error may be resolved
3636
// without needing to update the custom resource spec and sync will continue.
37-
// Any error not marked as Terminal will fall in this category.
3837
// Examples include:
3938
// - ServiceUnavailable errors that are transient
4039
// - AccessDeniedException that needs correct credentials
41-
ConditionTypeNonTerminal ConditionType = "ACK.NonTerminal"
40+
ConditionTypeRecoverable ConditionType = "ACK.Recoverable"
4241
)
4342

4443
// Condition is the common struct used by all CRDs managed by ACK service

0 commit comments

Comments
 (0)