From 1769750b7d894cb7a60a938e22014ef7628c3b7d Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Thu, 25 Jun 2020 10:11:29 -0700 Subject: [PATCH] fix log level --- pkg/minikube/node/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/node/start.go b/pkg/minikube/node/start.go index 9c0a36d0ae..f5292a3a4e 100644 --- a/pkg/minikube/node/start.go +++ b/pkg/minikube/node/start.go @@ -521,7 +521,7 @@ func rescaleCoreDNS(cc *config.ClusterConfig, runner command.Runner) { kubectl := kapi.KubectlBinaryPath(cc.KubernetesConfig.KubernetesVersion) cmd := exec.Command("sudo", "KUBECONFIG=/var/lib/minikube/kubeconfig", kubectl, "scale", "deployment", "--replicas=1", "coredns", "-n=kube-system") if _, err := runner.RunCmd(cmd); err != nil { - glog.Infof("unable to scale coredns replicas to 1: %v", err) + glog.Warningf("unable to scale coredns replicas to 1: %v", err) } else { glog.Infof("successfully scaled coredns replicas to 1") }