diff options
author | Robby Russell <robby@planetargon.com> | 2019-06-15 10:49:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-15 10:49:41 -0700 |
commit | 36e13f4803f2fef7d7ba3109cb0bd913de78cfea (patch) | |
tree | 93b4d28c8240e7b3b2fca90c3a6a294167827d20 /plugins/kubectl/README.md | |
parent | f992d434ec9057a33b9778fd945a6e80d8c2df75 (diff) | |
parent | d0e4319a703ab6d1e56a8f615a8d202d3a3753fd (diff) | |
download | zsh-36e13f4803f2fef7d7ba3109cb0bd913de78cfea.tar.gz zsh-36e13f4803f2fef7d7ba3109cb0bd913de78cfea.tar.bz2 zsh-36e13f4803f2fef7d7ba3109cb0bd913de78cfea.zip |
Add PersistentVolumeClaim support to kubectl plugin (#7827)
Just add aliases for PVC actions.
Diffstat (limited to 'plugins/kubectl/README.md')
-rw-r--r-- | plugins/kubectl/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/kubectl/README.md b/plugins/kubectl/README.md index 0514d8f3f..4541c7e92 100644 --- a/plugins/kubectl/README.md +++ b/plugins/kubectl/README.md @@ -90,3 +90,9 @@ plugins=(... kubectl) | keno | `kubectl edit node` | Edit nodes resource from the default editor | | kdno | `kubectl describe node` | Describe node resource in detail | | kdelno | `kubectl delete node` | Delete the node | +| | | **Persistent Volume Claim management** | +| kgpvc | `kubectl get pvc` | List all PVCs | +| kgpvcw | `kgpvc --watch` | After listing/getting the requested object, watch for changes | +| 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 | |