Kubernetes Namespaces Cheatsheet
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.
Large language models (LLMs) have fundamentally transformed our digital landscape, powering everything from chatbots and…
As Large Language Models (LLMs) evolve into autonomous agents, understanding agentic workflow design patterns has…
In today's data-driven business landscape, organizations are constantly seeking ways to harness the power of…
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…