Skip to content

Commit

Permalink
Merge pull request #7386 from tstromberg/none-advice
Browse files Browse the repository at this point in the history
"Point 'none' users toward the more user-friendly 'docker' driver
  • Loading branch information
tstromberg authored Apr 2, 2020
2 parents e937a60 + a3d729d commit f3392f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/minikube/node/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -456,9 +456,9 @@ func prepareNone() {
out.T(out.StartingNone, "Configuring local host environment ...")
if viper.GetBool(config.WantNoneDriverWarning) {
out.T(out.Empty, "")
out.WarningT("The 'none' driver provides limited isolation and may reduce system security and reliability.")
out.WarningT("For more information, see:")
out.T(out.URL, "https://minikube.sigs.k8s.io/docs/reference/drivers/none/")
out.WarningT("The 'none' driver is designed for experts who need to integrate with an existing VM")
out.ErrT(out.Tip, "Most users should use the newer 'docker' driver instead, which does not require root!")
out.ErrT(out.Documentation, "For more information, see: https://minikube.sigs.k8s.io/docs/reference/drivers/none/")
out.T(out.Empty, "")
}

Expand Down

0 comments on commit f3392f4

Please sign in to comment.