1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +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

@@ -178,6 +178,12 @@ alias kecj='kubectl edit cronjob'
alias kdcj='kubectl describe cronjob'
alias kdelcj='kubectl delete cronjob'
# Job management.
alias kgj='kubectl get job'
alias kej='kubectl edit job'
alias kdj='kubectl describe job'
alias kdelj='kubectl delete job'
# Only run if the user actually has kubectl installed
if (( ${+_comps[kubectl]} )); then
function kj() { kubectl "$@" -o json | jq; }