Skip to content

Commit 6b4f26d

Browse files
authored
Add work progressing condition reasons (#398)
Signed-off-by: Qing Hao <[email protected]>
1 parent 48b7234 commit 6b4f26d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

work/v1/types.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,12 @@ const (
517517
// WorkManifestsComplete represents that all completable manifests in the work
518518
// have the Complete condition
519519
WorkManifestsComplete string = "ManifestsComplete"
520+
// WorkProgressingReasonApplying indicates resources are being applied
521+
WorkProgressingReasonApplying string = "Applying"
522+
// WorkProgressingReasonCompleted indicates all resources are applied and available
523+
WorkProgressingReasonCompleted string = "Completed"
524+
// WorkProgressingReasonFailed indicates the work failed to apply
525+
WorkProgressingReasonFailed string = "Failed"
520526
)
521527

522528
// ManifestCondition represents the conditions of the resources deployed on a

0 commit comments

Comments
 (0)