diff --git a/plugins/kubectl/README.md b/plugins/kubectl/README.md index 28a502d11..7f1531402 100644 --- a/plugins/kubectl/README.md +++ b/plugins/kubectl/README.md @@ -35,6 +35,7 @@ plugins=(... kubectl) | kgpwide | `kgp -o wide` | Output in plain-text format with any additional information. For pods, the node name is included | | kep | `kubectl edit pods` | Edit pods from the default editor | | kdp | `kubectl describe pods` | Describe all pods | +| kdpa | `kubectl describe pods --all-namespaces` | Describe all pods targeting all namespaces | | kdelp | `kubectl delete pods` | Delete all pods matching passed arguments | | | | **Service management** | | kgs | `kubectl get svc` | List all services in ps output format | diff --git a/plugins/kubectl/kubectl.plugin.zsh b/plugins/kubectl/kubectl.plugin.zsh index 33699bdf9..410c2cf3b 100644 --- a/plugins/kubectl/kubectl.plugin.zsh +++ b/plugins/kubectl/kubectl.plugin.zsh @@ -47,6 +47,7 @@ alias kgpw='kgp --watch' alias kgpwide='kgp -o wide' alias kep='kubectl edit pods' alias kdp='kubectl describe pods' +alias kdpa='kubectl describe pods --all-namespaces' alias kdelp='kubectl delete pods' alias kgpall='kubectl get pods --all-namespaces -o wide'