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.
2 parents 759c58c + 7aace13 commit eabde5aCopy full SHA for eabde5a
apis/core/v1alpha1/conditions.go
@@ -32,6 +32,12 @@ const (
32
// - As a result of InvalidArgument in input yaml
33
// - Resource server state is "create-failed"
34
ConditionTypeTerminal ConditionType = "ACK.Terminal"
35
+ // ConditionTypeRecoverable indicates that the error may be resolved
36
+ // without needing to update the custom resource spec and sync will continue.
37
+ // Examples include:
38
+ // - ServiceUnavailable errors that are transient
39
+ // - AccessDeniedException that needs correct credentials
40
+ ConditionTypeRecoverable ConditionType = "ACK.Recoverable"
41
)
42
43
// Condition is the common struct used by all CRDs managed by ACK service
0 commit comments