Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

--wait, wait for more components #7375

Merged
merged 20 commits into from
Apr 4, 2020
Prev Previous commit
Next Next commit
use all components list in should wait
  • Loading branch information
medyagh committed Apr 4, 2020
commit 478d1833314e38882f13760c992e51f2e9e3b17e
7 changes: 6 additions & 1 deletion pkg/minikube/bootstrapper/bsutil/kverify/kverify.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ var (

// ShouldWait will return true if the config says need to wait
func ShouldWait(wcs map[string]bool) bool {
return wcs[APIServerWaitKey] || wcs[SystemPodsWaitKey] || wcs[DefaultSAWaitKey]
for _, c := range AllComponentsList {
if wcs[c] {
return true
}
}
return false
}

// ExpectedComponentsRunning returns whether or not all expected components are running
Expand Down