We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bea33f commit 56c002bCopy full SHA for 56c002b
1 file changed
controller/dependency.go
@@ -158,6 +158,10 @@ func (c *Controller) waitForComponentHealth(componentName string) error {
158
log.Printf("waitForComponentHealth: reconcile attempt for %s returned error: %v", componentName, err)
159
// don't return here; keep waiting until timeout to allow retries
160
}
161
+ if component.Status.Ready {
162
+ log.Printf("Component %s is healthy", componentName)
163
+ return nil
164
+ }
165
log.Printf("Component %s not healthy yet (state: %s)", componentName, component.Status.ObservedState)
166
167
0 commit comments