Skip to content

Commit

Permalink
Remove machine name from output
Browse files Browse the repository at this point in the history
"Starting minikube without Kubernetes {Machine Name} in cluster {cluster}" doesn't make sense so removing the Machine name var from output.
  • Loading branch information
Gimb0 committed May 20, 2022
1 parent b8b62b9 commit 71baac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/node/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit 71baac3

Please sign in to comment.