Skip to content

Commit

Permalink
More renames
Browse files Browse the repository at this point in the history
Signed-off-by: zachaller <[email protected]>
  • Loading branch information
zachaller committed Aug 24, 2022
1 parent 7ddd590 commit d0523f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pkg/apis/rollouts/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -991,7 +991,8 @@ const (
// of any update. Note that a Completed rollout could also be considered Progressing or Degraded, if its Pods become
// unavailable sometime after the update completes.
RolloutCompleted RolloutConditionType = "Completed"
// RolloutHealthy means that rollout is in a completed state and is healthy.
// RolloutHealthy means that rollout is in a completed state and is healthy. Which means that all the pods have been updated
// and are passing their health checks and are ready to serve traffic.
RolloutHealthy RolloutConditionType = "Healthy"
)

Expand Down
4 changes: 2 additions & 2 deletions utils/conditions/conditions.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ const (
// RolloutHealthyReason is added in a rollout when it is healthy.
RolloutHealthyReason = "RolloutHealthy"
// RolloutHealthyMessage is added when the rollout is completed and is healthy or not.
RolloutHealthyMessage = "Rollout is healthy and completed"
RolloutHealthyMessage = "Rollout is healthy"
// RolloutNotHealthyMessage is added when the rollout is completed and is healthy or not.
RolloutNotHealthyMessage = "Rollout is not healthy and completed"
RolloutNotHealthyMessage = "Rollout is not healthy"

// RolloutAbortedReason indicates that the rollout was aborted
RolloutAbortedReason = "RolloutAborted"
Expand Down

0 comments on commit d0523f6

Please sign in to comment.