From 615f233c779e245868ff74777e7cde75c2279d53 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Tue, 6 Oct 2020 21:07:02 -0700 Subject: [PATCH] Remove reference to Virtualbox in "stop" help --- cmd/minikube/cmd/stop.go | 5 ++--- site/content/en/docs/commands/stop.md | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/cmd/minikube/cmd/stop.go b/cmd/minikube/cmd/stop.go index dc595cff918f..670d064f684a 100644 --- a/cmd/minikube/cmd/stop.go +++ b/cmd/minikube/cmd/stop.go @@ -48,9 +48,8 @@ var ( var stopCmd = &cobra.Command{ Use: "stop", Short: "Stops a running local Kubernetes cluster", - Long: `Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM -itself, leaving all files intact. The cluster can be started again with the "start" command.`, - Run: runStop, + 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.`, + Run: runStop, } func init() { diff --git a/site/content/en/docs/commands/stop.md b/site/content/en/docs/commands/stop.md index f10b9f6f7ee6..8172b0ea101f 100644 --- a/site/content/en/docs/commands/stop.md +++ b/site/content/en/docs/commands/stop.md @@ -11,8 +11,7 @@ Stops a running local Kubernetes cluster ### Synopsis -Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM -itself, leaving all files intact. The cluster can be started again with the "start" command. +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. ``` minikube stop [flags]