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 257028f commit f604e01Copy full SHA for f604e01
phase/install_workers.go
@@ -56,7 +56,7 @@ func (p *InstallWorkers) Run() error {
56
57
err := p.hosts.ParallelEach(func(h *cluster.Host) error {
58
log.Infof("%s: validating api connection to %s", h, url)
59
- if err := h.CheckHTTPStatus(healthz, 200, 401); err != nil {
+ if err := h.WaitHTTPStatus(healthz, 200, 401); err != nil {
60
return fmt.Errorf("failed to connect from worker to kubernetes api at %s - check networking", url)
61
}
62
return nil
0 commit comments