k8s change namespace

check context

kubectl config current-context 

create a new namespace

kubectl create ns mywebapp

change to new namespace

kubectl config set-context minikube --namespace mywebapp

**check on which namespace **

kubectl get sa default -o jsonpath='{.metadata.namespace}'