Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix status update #96

Merged
merged 13 commits into from
Jun 14, 2021
4 changes: 4 additions & 0 deletions api/v1alpha1/condition_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ const (
// the progressive sync stages have been completed
StagesCompleteReason string = "StagesCompleted"

// StagesProgressingReason represent the fact that some
// of the progressive sync stages are progressing
StagesProgressingReason string = "StagesProgressing"

// StagesFailedReason represent the fact that a
// progressive sync stage has failed
StagesFailedReason string = "StagesFailed"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ spec:
type: string
name:
type: string
stage:
phase:
description: StageStatusPhase defines the observed stage phase
enum:
- Progressing
Expand Down
Loading