We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759c58c commit e400157Copy full SHA for e400157
apis/core/v1alpha1/conditions.go
@@ -32,6 +32,13 @@ const (
32
// - As a result of InvalidArgument in input yaml
33
// - Resource server state is "create-failed"
34
ConditionTypeTerminal ConditionType = "ACK.Terminal"
35
+ // ConditionTypeNonTerminal indicates that the error may be resolved
36
+ // without needing to update the custom resource spec and sync will continue.
37
+ // Any error not marked as Terminal will fall in this category.
38
+ // Examples include:
39
+ // - ServiceUnavailable errors that are transient
40
+ // - AccessDeniedException that needs correct credentials
41
+ ConditionTypeNonTerminal ConditionType = "ACK.NonTerminal"
42
)
43
44
// Condition is the common struct used by all CRDs managed by ACK service
0 commit comments