浏览代码

fix(kubectl): remove duplicated alias for kubectl plugin `kgsa` (#9927)

Wenli Wan 2 年之前
父节点
当前提交
0869a57cb5
共有 2 个文件被更改,包括 0 次插入2 次删除
  1. 0 1
      plugins/kubectl/README.md
  2. 0 1
      plugins/kubectl/kubectl.plugin.zsh

+ 0 - 1
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**                                                                         |

+ 0 - 1
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"