Remove 'pods' word

pull/4959/head
tstromberg 2019-08-02 13:47:34 -07:00
parent 45e9cfba8f
commit ee6b3da231
2 changed files with 2 additions and 3 deletions

View File

@ -305,7 +305,7 @@ func (k *Bootstrapper) WaitCluster(k8s config.KubernetesConfig) error {
// by a CNI plugin which is usually started after minikube has been brought
// up. Otherwise, minikube won't start, as "k8s-app" pods are not ready.
componentsOnly := k8s.NetworkPlugin == "cni"
out.T(out.WaitingPods, "Waiting for pods:")
out.T(out.WaitingPods, "Waiting for:")
client, err := util.GetClient()
if err != nil {
return errors.Wrap(err, "k8s client")

View File

@ -134,6 +134,7 @@ func StartHost(api libmachine.API, config cfg.MachineConfig) (*host.Host, error)
e := engineOptions(config)
glog.Infof("engine options: %+v", e)
out.T(out.Waiting, "Waiting for the host to be provisioned ...")
err = configureHost(h, e)
if err != nil {
return nil, err
@ -152,8 +153,6 @@ func localDriver(name string) bool {
// configureHost handles any post-powerup configuration required
func configureHost(h *host.Host, e *engine.Options) error {
glog.Infof("configureHost: %T %+v", h, h)
out.T(out.Waiting, "Provisioning guest ...", out.V{})
if len(e.Env) > 0 {
h.HostOptions.EngineOptions.Env = e.Env
glog.Infof("Detecting provisioner ...")