DISCLAIMER: These are just some simple aliases
I’ve setup in my CLI for my personal convenience while working with kubernetes / kubectl / minikube / kustomize / etc
# kubectl shortcuts
alias kc="kubectl"
alias kcg="kubectl get"
alias kcga="kubectl get --all-namespaces"
alias kcgy="kubectl get --output=yaml"
alias kcgw="kubectl get --output=wide"
alias kcge="kubectl get events"
alias kce="kubectl edit"
alias kcd="kubectl describe"
alias…