Merge pull request #16695 from spowelljr/fixOutputMessage

Skip waiting for kicbase downloads on VM drivers
pull/16694/head^2
Steven Powell 2023-06-13 11:05:22 -07:00 committed by GitHub
commit 5801196244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -374,7 +374,9 @@ func Provision(cc *config.ClusterConfig, n *config.Node, apiServer bool, delOnFa
}
handleDownloadOnly(&cacheGroup, &kicGroup, n.KubernetesVersion, cc.KubernetesConfig.ContainerRuntime, cc.Driver)
waitDownloadKicBaseImage(&kicGroup)
if driver.IsKIC(cc.Driver) {
waitDownloadKicBaseImage(&kicGroup)
}
return startMachine(cc, n, delOnFail)
}