Remove machine name from output

"Starting minikube without Kubernetes {Machine Name} in cluster {cluster}" doesn't make sense so removing the Machine name var from output.
pull/14200/head
Gimb0 2022-05-20 23:48:01 +10:00
parent b8b62b9131
commit 71baac336f
1 changed files with 1 additions and 1 deletions
pkg/minikube/node

View File

@ -346,7 +346,7 @@ func Provision(cc *config.ClusterConfig, n *config.Node, apiServer bool, delOnFa
// Be explicit with each case for the sake of translations
if cc.KubernetesConfig.KubernetesVersion == constants.NoKubernetesVersion {
out.Step(style.ThumbsUp, "Starting minikube without Kubernetes {{.name}} in cluster {{.cluster}}", out.V{"name": name, "cluster": cc.Name})
out.Step(style.ThumbsUp, "Starting minikube without Kubernetes in cluster {{.cluster}}", out.V{"cluster": cc.Name})
} else {
if apiServer {
out.Step(style.ThumbsUp, "Starting control plane node {{.name}} in cluster {{.cluster}}", out.V{"name": name, "cluster": cc.Name})