A Namespace is a mechanism to partition resources created by users into a logically named group.
A single cluster should be able to satisfy the needs of multiple users or groups of users (henceforth a ‘user community’).
Each user community wants to be able to work in isolation from other communities.
Each user community has its own:
A cluster operator may create a Namespace for each unique user community.
The Namespace provides a unique scope for:
Look here for an in depth example of namespaces.
You can list the current namespaces in a cluster using:
$ kubectl get namespaces
NAME LABELS STATUS
default <none> Active
kube-system <none> Active
Kubernetes starts with two initial namespaces:
* default
The default namespace for objects with no other namespace
* kube-system
The namespace for objects created by the Kubernetes system
You can also get the summary of a specific namespace using:
$ kubectl get namespaces <name>
Or you can get detailed information with:
$ kubectl describe namespaces <name>
Name: default
Labels: <none>
Status: Active
No resource quota.
Resource Limits
Type Resource Min Max Default
---- -------- --- --- ---
Container cpu - - 100m
Note that these details show both resource quota (if present) as well as resource limit ranges.
Resource quota tracks aggregate usage of resources in the Namespace and allows cluster operators to define Hard resource usage limits that a Namespace may consume.
A limit range defines min/max constraints on the amount of resources a single entity can consume in a Namespace.
See Admission control: Limit Range
A namespace can be in one of two phases:
* Active
the namespace is in use
* Terminating
the namespace is being deleted, and can not be used for new objects
See the design doc for more details.
To create a new namespace, first create a new YAML file called my-namespace.yaml
with the contents:
apiVersion: v1
kind: Namespace
metadata:
name: <insert-namespace-name-here>
Note that the name of your namespace must be a DNS compatible label.
More information on the finalizers
field can be found in the namespace design doc.
Then run:
$ kubectl create -f ./my-namespace.yaml
See Setting the namespace for a request and Setting the namespace preference.
You can delete a namespace with
$ kubectl delete namespaces <insert-some-namespace-name>
WARNING, this deletes everything under the namespace!
This delete is asynchronous, so for a time you will see the namespace in the Terminating
state.
When you create a Service, it creates a corresponding DNS entry.
This entry is of the form <service-name>.<namespace-name>.svc.cluster.local
, which means
that if a container just uses <service-name>
it will resolve to the service which
is local to a namespace. This is useful for using the same configuration across
multiple namespaces such as Development, Staging and Production. If you want to reach
across namespaces, you need to use the fully qualified domain name (FQDN).
Details of the design of namespaces in Kubernetes, including a detailed example can be found in the namespaces design doc