mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Add PersistentVolumeClaim support to kubectl plugin (#7827)
Just add aliases for PVC actions.
This commit is contained in:
commit
36e13f4803
2 changed files with 14 additions and 0 deletions
|
|
@ -115,3 +115,11 @@ alias kgno='kubectl get nodes'
|
|||
alias keno='kubectl edit node'
|
||||
alias kdno='kubectl describe node'
|
||||
alias kdelno='kubectl delete node'
|
||||
|
||||
# PVC management.
|
||||
alias kgpvc='kubectl get pvc'
|
||||
alias kgpvcw='kgpvc --watch'
|
||||
alias kepvc='kubectl edit pvc'
|
||||
alias kdpvc='kubectl describe pvc'
|
||||
alias kdelpvc='kubectl delete pvc'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue