Remove reference to Virtualbox in "stop" help

pull/9411/head
Thomas Stromberg 2020-10-06 21:07:02 -07:00
parent d7c517471d
commit 615f233c77
2 changed files with 3 additions and 5 deletions

View File

@ -48,9 +48,8 @@ var (
var stopCmd = &cobra.Command{ var stopCmd = &cobra.Command{
Use: "stop", Use: "stop",
Short: "Stops a running local Kubernetes cluster", Short: "Stops a running local Kubernetes cluster",
Long: `Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM Long: `Stops a local Kubernetes cluster. This command stops the underlying VM or container, but keeps user data intact. The cluster can be started again with the "start" command.`,
itself, leaving all files intact. The cluster can be started again with the "start" command.`, Run: runStop,
Run: runStop,
} }
func init() { func init() {

View File

@ -11,8 +11,7 @@ Stops a running local Kubernetes cluster
### Synopsis ### Synopsis
Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM Stops a local Kubernetes cluster. This command stops the underlying VM or container, but keeps user data intact. The cluster can be started again with the "start" command.
itself, leaving all files intact. The cluster can be started again with the "start" command.
``` ```
minikube stop [flags] minikube stop [flags]