1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-16 11:40:46 +00:00

Compare commits

...

4 commits

Author SHA1 Message Date
Mohammad Jolani
800943c3dd
Merge 4056aaa986 into f11cc8fea1 2024-09-22 22:20:54 +08:00
Mohammad Jolani
4056aaa986
Merge pull request #1 from maljolani/maljolani-patch-1
feat(kubectl): add alias for unset current-context
2024-09-19 13:44:33 +03:00
Mohammad Jolani
5817e0a3c3
Update README.md 2024-09-19 13:42:23 +03:00
Mohammad Jolani
64ea3c0837
feat(kubectl): add alias for unset current-context 2024-09-19 13:39:28 +03:00
2 changed files with 2 additions and 0 deletions

View file

@ -20,6 +20,7 @@ plugins=(... kubectl)
| | | **Manage configuration quickly to switch contexts between local, dev and staging** |
| kcuc | `kubectl config use-context` | Set the current-context in a kubeconfig file |
| kcsc | `kubectl config set-context` | Set a context entry in kubeconfig |
| kucc | `kubectl config unset current-context` | Unset the current-context in a kubeconfig file |
| kcdc | `kubectl config delete-context` | Delete the specified context from the kubeconfig |
| kccc | `kubectl config current-context` | Display the current-context |
| kcgc | `kubectl config get-contexts` | List of contexts available |

View file

@ -29,6 +29,7 @@ alias kcuc='kubectl config use-context'
alias kcsc='kubectl config set-context'
alias kcdc='kubectl config delete-context'
alias kccc='kubectl config current-context'
alias kucc='kubectl config unset current-context'
# List all contexts
alias kcgc='kubectl config get-contexts'