Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
6da85279
Unverified
Commit
6da85279
authored
Apr 29, 2019
by
Marc Cornellà
Committed by
GitHub
Apr 29, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
README.md
plugins/kubectl/README.md
+1
-1
kubectl.plugin.zsh
plugins/kubectl/kubectl.plugin.zsh
+2
-1
No files found.
plugins/kubectl/README.md
View file @
6da85279
...
...
@@ -13,7 +13,7 @@ plugins=(... kubectl)
| Alias | Command | Description |
|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------|
| k
u
|
`kubectl`
| The kubectl command |
| k
|
`kubectl`
| The kubectl command |
| kca |
`kubectl --all-namespaces`
| The kubectl command targeting all namespaces |
| kaf |
`kubectl apply -f`
| Apply a YML file |
| keti |
`kubectl exec -ti`
| Drop into an interactive terminal on a container |
...
...
plugins/kubectl/kubectl.plugin.zsh
View file @
6da85279
...
...
@@ -10,7 +10,8 @@ if (( $+commands[kubectl] )); then
unset
__KUBECTL_COMPLETION_FILE
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
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