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 8c40639 commit 62af3f0Copy full SHA for 62af3f0
pkg/handlers/generic/lifecycle/addons/helmaddon.go
@@ -228,6 +228,9 @@ func waitToBeReady(
228
Reader: client,
229
Target: hcp.DeepCopy(),
230
Check: func(_ context.Context, obj *caaphv1.HelmChartProxy) (bool, error) {
231
+ if obj.ObjectMeta.Generation != obj.Status.ObservedGeneration {
232
+ return false, nil
233
+ }
234
return conditions.IsTrue(obj, caaphv1.HelmReleaseProxiesReadyCondition), nil
235
},
236
Interval: 5 * time.Second,
0 commit comments