Skip to content

Commit a44d758

Browse files
committed
Incorporated review comments
1 parent a791adc commit a44d758

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apis/meta/conditions.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ const (
5757
// For more information about polarity patterns, see:
5858
// https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties
5959
ReconcilingCondition string = "Reconciling"
60+
61+
// HealthyCondition represents the last recorded
62+
// health assessment result.
63+
HealthyCondition string = "Healthy"
6064
)
6165

6266
// These constants define generic Condition reasons to be used by GitOps Toolkit components.
@@ -121,20 +125,16 @@ const (
121125
// the use of unsupported network protocols.
122126
UnsupportedConnectionTypeReason = "UnsupportedConnectionType"
123127

124-
// HealthyCondition represents the last recorded
125-
// health assessment result.
126-
HealthyCondition string = "Healthy"
127-
128128
// PruneFailedReason represents the fact that the
129-
// pruning of the Kustomization failed.
129+
// pruning of the resources failed.
130130
PruneFailedReason string = "PruneFailed"
131131

132132
// ArtifactFailedReason represents the fact that the
133133
// source artifact download failed.
134134
ArtifactFailedReason string = "ArtifactFailed"
135135

136136
// BuildFailedReason represents the fact that the
137-
// kustomize build failed.
137+
// build failed.
138138
BuildFailedReason string = "BuildFailed"
139139

140140
// HealthCheckFailedReason represents the fact that

0 commit comments

Comments
 (0)