1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-10 01:10:41 +01:00

feat(kubectl): add aliases for job management (#9992)

This commit is contained in:
Vitul Rana
2022-03-07 15:08:56 +05:30
committed by GitHub
parent f96a900ea3
commit 3343891ea6
2 changed files with 11 additions and 0 deletions

View File

@@ -120,6 +120,11 @@ plugins=(... kubectl)
| kecj | `kubectl edit cronjob` | Edit CronJob from the default editor |
| kdcj | `kubectl describe cronjob` | Describe a CronJob in details |
| kdelcj | `kubectl delete cronjob` | Delete the CronJob |
| | | **Job management** |
| kgj | `kubectl get job` | List all Job in ps output format |
| kej | `kubectl edit job` | Edit a Job in details |
| kdj | `kubectl describe job` | Describe the Job |
| kdelj | `kubectl delete job` | Delete the Job |
## Wrappers