Point 'none' users toward the more user-friendly 'docker' driver

pull/7386/head
Thomas Stromberg 2020-04-02 11:44:44 -07:00
parent bf0bb60b59
commit a3d729db6b
1 changed files with 3 additions and 3 deletions

View File

@ -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, "")
}