We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f0ad84 commit 01a8e23Copy full SHA for 01a8e23
pkg/handlers/generic/lifecycle/addons/helmaddon.go
@@ -227,7 +227,10 @@ func waitToBeReady(
227
Reader: client,
228
Target: hcp.DeepCopy(),
229
Check: func(_ context.Context, obj *caaphv1.HelmChartProxy) (bool, error) {
230
- return conditions.IsTrue(obj, caaphv1.HelmReleaseProxiesReadyCondition), nil
+ if obj.ObjectMeta.Generation != obj.Status.ObservedGeneration {
231
+ return false, nil
232
+ }
233
+ return conditions.IsTrue(obj, caaphv1.HelmReleaseReadyCondition), nil
234
},
235
Interval: 5 * time.Second,
236
Timeout: 30 * time.Second,
0 commit comments