From 3b24e6fdbeb25f65fbacb4801acf5b18761b7735 Mon Sep 17 00:00:00 2001 From: Priya Wadhwa Date: Thu, 28 May 2020 13:59:50 -0700 Subject: [PATCH] Add info about --force --- cmd/minikube/cmd/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index aef199c8dc..bfaf528faf 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -976,7 +976,7 @@ func getKubernetesVersion(old *config.ClusterConfig) string { if viper.GetBool(force) { out.WarningT("Kubernetes {{.version}} is not supported by this release of minikube", out.V{"version": nvs}) } else { - exit.WithCodeT(exit.Data, "Sorry, Kubernetes {{.version}} is not supported by this release of minikube", out.V{"version": nvs}) + exit.WithCodeT(exit.Data, "Sorry, Kubernetes {{.version}} is not supported by this release of minikube. To use this version anyway, use the `--force` flag.", out.V{"version": nvs}) } }