You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/minikube/cmd/start.go
+12-10
Original file line number
Diff line number
Diff line change
@@ -179,7 +179,7 @@ func initMinikubeFlags() {
179
179
180
180
// initKubernetesFlags inits the commandline flags for kubernetes related options
181
181
funcinitKubernetesFlags() {
182
-
startCmd.Flags().String(kubernetesVersion, "", "The kubernetes version that the minikube VM will use (ex: v1.2.3)")
182
+
startCmd.Flags().String(kubernetesVersion, "", fmt.Sprintf("The kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for %s, 'latest' for %s). Defaults to 'stable'.", constants.DefaultKubernetesVersion, constants.NewestKubernetesVersion))
0 commit comments