Skip to content

Commit 72e8341

Browse files
authored
Merge pull request #11431 from briandealwis/resume
Add "resume" as an alias for "unpause"
2 parents a9ce58f + f6a89ce commit 72e8341

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

cmd/minikube/cmd/unpause.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ import (
3939

4040
// unpauseCmd represents the docker-pause command
4141
var unpauseCmd = &cobra.Command{
42-
Use: "unpause",
43-
Short: "unpause Kubernetes",
42+
Use: "unpause",
43+
Aliases: []string{"resume"},
44+
Short: "unpause Kubernetes",
4445
Run: func(cmd *cobra.Command, args []string) {
4546
cname := ClusterFlagValue()
4647
register.SetEventLogPath(localpath.EventLog(cname))

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

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ unpause Kubernetes
1717
minikube unpause [flags]
1818
```
1919

20+
### Aliases
21+
22+
[resume]
23+
2024
### Options
2125

2226
```

0 commit comments

Comments
 (0)