File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -503,6 +503,16 @@ const (
503
503
// WorkDegraded represents that the current state of work does not match
504
504
// the desired state for a certain period.
505
505
WorkDegraded string = "Degraded"
506
+ // WorkComplete represents that the work has completed and should no longer
507
+ // be updated.
508
+ WorkComplete string = "Complete"
509
+ )
510
+
511
+ // Work condition reasons
512
+ const (
513
+ // WorkManifestsComplete represents that all completable manifests in the work
514
+ // have the Complete condition
515
+ WorkManifestsComplete string = "ManifestsComplete"
506
516
)
507
517
508
518
// ManifestCondition represents the conditions of the resources deployed on a
@@ -596,7 +606,10 @@ const (
596
606
ManifestComplete string = "Complete"
597
607
)
598
608
599
- // Condition reasons
609
+ // Manifest condition reasons
610
+ //
611
+ // All reasons set by condition rule evaluation are expected to be prefixed with "ConditionRule"
612
+ // in order to determine which conditions were set by rules.
600
613
const (
601
614
// ConditionRuleTrue is set when a rule is evaluated without error
602
615
ConditionRuleEvaluated string = "ConditionRuleEvaluated"
You can’t perform that action at this time.
0 commit comments