Skip to content

Commit 0068dfb

Browse files
authored
Merge pull request #9411 from tstromberg/vbox-wut
Remove reference to Virtualbox in "stop" help
2 parents 82a5189 + 615f233 commit 0068dfb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

cmd/minikube/cmd/stop.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,8 @@ var (
4848
var stopCmd = &cobra.Command{
4949
Use: "stop",
5050
Short: "Stops a running local Kubernetes cluster",
51-
Long: `Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM
52-
itself, leaving all files intact. The cluster can be started again with the "start" command.`,
53-
Run: runStop,
51+
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.`,
52+
Run: runStop,
5453
}
5554

5655
func init() {

site/content/en/docs/commands/stop.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ Stops a running local Kubernetes cluster
1111

1212
### Synopsis
1313

14-
Stops a local Kubernetes cluster running in Virtualbox. This command stops the VM
15-
itself, leaving all files intact. The cluster can be started again with the "start" command.
14+
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.
1615

1716
```
1817
minikube stop [flags]

0 commit comments

Comments
 (0)