Can I set the default namespace? That is:
$ kubectl get pods -n NAMESPACEIt saves me having to type it in each time especially when I'm on the one namespace for most of the day.
Yes, you can set the namespace as per the docs like so:
$ kubectl config set-context --current --namespace=NAMESPACEAlternatively, you can use kubectx for this.
You can also use a temporary linux alias:
alias k='kubectl -n kube-system 'Then use it like
k get podsThat's it ;)