mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
allow kubectl commands against all namespaces (#7637)
* allow kubectl commands against all namespaces * enhance the readme too
This commit is contained in:
parent
e3e0dd599e
commit
275e5b1349
2 changed files with 4 additions and 0 deletions
|
|
@ -13,6 +13,9 @@ fi
|
|||
# This command is used a LOT both below and in daily life
|
||||
alias k=kubectl
|
||||
|
||||
# Execute a kubectl command against all namespaces
|
||||
alias kca='f(){ kubectl "$@" --all-namespaces; unset -f f; }; f'
|
||||
|
||||
# Apply a YML file
|
||||
alias kaf='kubectl apply -f'
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue