Kubernetes namespaces represents virtual clusters (logical entity with a unique name) created out of same physical cluster to enable allocation or split of cluster resources to different group of users. Namespaces are, primarily, used for managing cluster resources across dev/test/production environments by attaching different level of authorization controls and policies to different sections of cluster resources. In simpler words, it allows to create a community of users (developers, testers, production ops) in relation to some of the following:
This post aims to provide a list of commonly used commands (cheat sheet) to work with namespaces. This list can prove to be very useful when you are starting to work with Kubernetes namespaces.
kubectl get namespaces
kubectl get namespaces --show-labels
kubectl get namespaces <name>
kubectl describe namespaces <name>
kubectl create -f <yaml/json file consisting of namespace information>
Here is a sample json file for development namespace:
{ "kind": "Namespace", "apiVersion": "v1", "metadata": { "name": "development", "labels": { "name": "development" } } }
kubectl delete namespaces <name>
kubectl config view
kubectl config set-context <context-name> --namespace=<namespace-name> --cluster=<cluster-name> --user=<user-name><span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start"></span>
kubectl config use-context <context name>
kubectl config current-context
In this post, you scanned through the list of commands in relation to Kubernetes Namespaces. Did you find this article useful? Do you have any questions about this article or Kubernetes namespaces commands? Leave a comment and ask your questions and I shall do my best to address your queries.
In recent years, artificial intelligence (AI) has evolved to include more sophisticated and capable agents,…
Adaptive learning helps in tailoring learning experiences to fit the unique needs of each student.…
With the increasing demand for more powerful machine learning (ML) systems that can handle diverse…
Anxiety is a common mental health condition that affects millions of people around the world.…
In machine learning, confounder features or variables can significantly affect the accuracy and validity of…
Last updated: 26 Sept, 2024 Credit card fraud detection is a major concern for credit…