Merge pull request #1 from maljolani/maljolani-patch-1

feat(kubectl): add alias for unset current-context
This commit is contained in:
Mohammad Jolani 2024-09-19 13:44:33 +03:00 committed by GitHub
commit 4056aaa986
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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'