diff options
author | Jason Schwerberg <jason@schwerberg.com> | 2019-06-15 11:49:33 -0700 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-06-15 20:49:33 +0200 |
commit | c105c04b6b1ddb917c12eadacb26c252f44ddfad (patch) | |
tree | acc818e351c6ee975cd6f0ad04a104dcbf0b2964 /plugins/kubectl/README.md | |
parent | fb43df128fd84a9926ca936b8ff051cca10d4ee3 (diff) | |
download | zsh-c105c04b6b1ddb917c12eadacb26c252f44ddfad.tar.gz zsh-c105c04b6b1ddb917c12eadacb26c252f44ddfad.tar.bz2 zsh-c105c04b6b1ddb917c12eadacb26c252f44ddfad.zip |
kubectl: add statefulset aliases (#7826)
Diffstat (limited to 'plugins/kubectl/README.md')
-rw-r--r-- | plugins/kubectl/README.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/kubectl/README.md b/plugins/kubectl/README.md index 4541c7e92..c0db59362 100644 --- a/plugins/kubectl/README.md +++ b/plugins/kubectl/README.md @@ -96,3 +96,12 @@ plugins=(... kubectl) | kepvc | `kubectl edit pvc` | Edit pvcs from the default editor | | kdpvc | `kubectl describe pvc` | Descirbe all pvcs | | kdelpvc | `kubectl delete pvc` | Delete all pvcs matching passed arguments | +| | | | +| kgss | `kubectl get statefulset` | List the statefulsets in ps format | +| kgssw | `kgss --watch` | After getting the list of statefulsets, watch for changes | +| kgsswide| `kgss -o wide` | After getting the statefulsets, output in plain-text format with any additional information | +| kess | `kubectl edit statefulset` | Edit statefulset resource from the default editor | +| kdss | `kubectl describe statefulset` | Describe statefulset resource in detail | +| kdelss | `kubectl delete statefulset` | Delete the statefulset | +| ksss | `kubectl scale statefulset` | Scale a statefulset | +| krsss | `kubectl rollout status statefulset`| Check the rollout status of a deployment | |