diff options
author | Wenli Wan <swwl1992@gmail.com> | 2021-06-12 11:49:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-11 20:49:04 -0700 |
commit | 0869a57cb585ad6279abf108c742e3c6650ed9d5 (patch) | |
tree | 1c601e7fe8aa04ed8d77d02f27af7f2aa0b9485f /plugins/kubectl | |
parent | 81db2af60131025f1bb1e25b27fc530066cdba3a (diff) | |
download | zsh-0869a57cb585ad6279abf108c742e3c6650ed9d5.tar.gz zsh-0869a57cb585ad6279abf108c742e3c6650ed9d5.tar.bz2 zsh-0869a57cb585ad6279abf108c742e3c6650ed9d5.zip |
fix(kubectl): remove duplicated alias for kubectl plugin `kgsa` (#9927)
Diffstat (limited to 'plugins/kubectl')
-rw-r--r-- | plugins/kubectl/README.md | 1 | ||||
-rw-r--r-- | plugins/kubectl/kubectl.plugin.zsh | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/plugins/kubectl/README.md b/plugins/kubectl/README.md index 8937b2b80..f6651c8cd 100644 --- a/plugins/kubectl/README.md +++ b/plugins/kubectl/README.md @@ -107,7 +107,6 @@ plugins=(... kubectl) | ksss | `kubectl scale statefulset` | Scale a statefulset | | krsss | `kubectl rollout status statefulset`| Check the rollout status of a deployment | | | | **Service Accounts management** | -| kgsa | `kubectl get sa` | List all service accounts | | kdsa | `kubectl describe sa` | Describe a service account in details | | kdelsa | `kubectl delete sa` | Delete the service account | | | | **DaemonSet management** | diff --git a/plugins/kubectl/kubectl.plugin.zsh b/plugins/kubectl/kubectl.plugin.zsh index 56135274f..58a401120 100644 --- a/plugins/kubectl/kubectl.plugin.zsh +++ b/plugins/kubectl/kubectl.plugin.zsh @@ -151,7 +151,6 @@ alias kdpvc='kubectl describe pvc' alias kdelpvc='kubectl delete pvc' # Service account management. -alias kgsa="kubectl get sa" alias kdsa="kubectl describe sa" alias kdelsa="kubectl delete sa" |