Unverified Commit 6da85279 authored by Marc Cornellà's avatar Marc Cornellà Committed by GitHub
Browse files

Revert "kubectl: rename k alias" (#7817)

This reverts commit 978b724c (#7749)

See https://github.com/robbyrussell/oh-my-zsh/issues/6408#issuecomment-485718042 and later comments.
parent d16adb6a
...@@ -13,7 +13,7 @@ plugins=(... kubectl) ...@@ -13,7 +13,7 @@ plugins=(... kubectl)
| Alias | Command | Description | | Alias | Command | Description |
|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------| |:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------|
| ku | `kubectl` | The kubectl command | | k | `kubectl` | The kubectl command |
| kca | `kubectl --all-namespaces` | The kubectl command targeting all namespaces | | kca | `kubectl --all-namespaces` | The kubectl command targeting all namespaces |
| kaf | `kubectl apply -f` | Apply a YML file | | kaf | `kubectl apply -f` | Apply a YML file |
| keti | `kubectl exec -ti` | Drop into an interactive terminal on a container | | keti | `kubectl exec -ti` | Drop into an interactive terminal on a container |
......
...@@ -10,7 +10,8 @@ if (( $+commands[kubectl] )); then ...@@ -10,7 +10,8 @@ if (( $+commands[kubectl] )); then
unset __KUBECTL_COMPLETION_FILE unset __KUBECTL_COMPLETION_FILE
fi fi
alias ku=kubectl # This command is used a LOT both below and in daily life
alias k=kubectl
# Execute a kubectl command against all namespaces # Execute a kubectl command against all namespaces
alias kca='f(){ kubectl "$@" --all-namespaces; unset -f f; }; f' alias kca='f(){ kubectl "$@" --all-namespaces; unset -f f; }; f'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment