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