What are NameSpaces ?
Kubernetes uses namespaces to organize objects in the cluster. You can think of each namespace as a folder that holds a set of objects
Command to reference namespaces:
kubectl –namespace=mystuff
Command to list all pods:
kubectl –all-namespaces
Command to change Namespace permanently
kubectl config set-context my-context –namespace=mystuff