Skip to content

Commit

Permalink
Merge pull request #11431 from briandealwis/resume
Browse files Browse the repository at this point in the history
Add "resume" as an alias for "unpause"
  • Loading branch information
medyagh authored May 19, 2021
2 parents a9ce58f + f6a89ce commit 72e8341
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/minikube/cmd/unpause.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ import (

// unpauseCmd represents the docker-pause command
var unpauseCmd = &cobra.Command{
Use: "unpause",
Short: "unpause Kubernetes",
Use: "unpause",
Aliases: []string{"resume"},
Short: "unpause Kubernetes",
Run: func(cmd *cobra.Command, args []string) {
cname := ClusterFlagValue()
register.SetEventLogPath(localpath.EventLog(cname))
Expand Down
4 changes: 4 additions & 0 deletions site/content/en/docs/commands/unpause.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ unpause Kubernetes
minikube unpause [flags]
```

### Aliases

[resume]

### Options

```
Expand Down

0 comments on commit 72e8341

Please sign in to comment.