diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index 3c8ec57cd44f8dc72036c899c5ec514cfc3621b3..d831876bdc6be374346351287dabeffd8dc665c9 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -993,7 +993,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}) } } diff --git a/pkg/minikube/constants/constants.go b/pkg/minikube/constants/constants.go index a7bb99e7ea94d937169cf9ccd4814e68848c2899..ffdb5bad12b6cb7b720f4d3e94144c60b3d5ac18 100644 --- a/pkg/minikube/constants/constants.go +++ b/pkg/minikube/constants/constants.go @@ -31,7 +31,7 @@ const ( // NewestKubernetesVersion is the newest Kubernetes version to test against NewestKubernetesVersion = "v1.18.4-rc.0" // OldestKubernetesVersion is the oldest Kubernetes version to test against - OldestKubernetesVersion = "v1.12.0" + OldestKubernetesVersion = "v1.13.0" // DefaultClusterName is the default nane for the k8s cluster DefaultClusterName = "minikube" // DockerDaemonPort is the port Docker daemon listening inside a minikube node (vm or container).