Some of the basic kubectl commands apply to all k8s objects Namespaces used to group objects in the cluster each namespace acts like a folder holding a set of objects kubectl works with the default namespace by default —namespace can be passed to specify a different one Context can be used to change the default namespace, manage different clusters or different users for authenticating to them To change the namespace to abc , run: $ kubectl config set-context my-context --namespace=abc This command just creates a context. To run it, use: $ kubectl config use-context my-context This records the change in the kubectl config file while is usually located at $HOME/.kube/config . This file also stores information related to finding and authenticating to the cluster. Viewing Kubernetes API Objects Everything is represented by a RESTful resource, called objects. E...