Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
978b724c
Unverified
Commit
978b724c
authored
Apr 17, 2019
by
Marc Cornellà
Committed by
GitHub
Apr 17, 2019
Browse files
kubectl: rename k alias (#7749)
This uses `ku` instead of `k` as an alias for kubectl. Fixes #6408
parent
2c1880cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/kubectl/README.md
View file @
978b724c
...
@@ -13,7 +13,7 @@ plugins=(... kubectl)
...
@@ -13,7 +13,7 @@ plugins=(... kubectl)
| Alias | Command | Description |
| Alias | Command | Description |
|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------|
|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------|
| k
|
`kubectl`
| The kubectl command |
| k
u
|
`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 |
...
...
plugins/kubectl/kubectl.plugin.zsh
View file @
978b724c
...
@@ -10,8 +10,7 @@ if (( $+commands[kubectl] )); then
...
@@ -10,8 +10,7 @@ if (( $+commands[kubectl] )); then
unset
__KUBECTL_COMPLETION_FILE
unset
__KUBECTL_COMPLETION_FILE
fi
fi
# This command is used a LOT both below and in daily life
alias
ku
=
kubectl
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'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment