Merge pull request #1522 from matthewadams/patch-1

netshoot alias for k8s
This commit is contained in:
Nils Winkler
2020-03-25 08:23:07 +01:00
committed by GitHub

View File

@@ -18,6 +18,7 @@ function _set_pkg_aliases()
alias kcdn='kubectl describe node'
alias kcgpan='kubectl get pods --all-namespaces'
alias kcgdan='kubectl get deployments --all-namespaces'
alias kcnetshoot='kubectl run --generator=run-pod/v1 netshoot-$(uuidgen | tr A-Z a-z | sed 's/-//g') --rm -i --tty --image nicolaka/netshoot -- /bin/bash'
fi
}