describe what is kube-public

This commit is contained in:
zhangxiaoyu-zidif 2017-10-22 11:41:19 +08:00 committed by Peter (XiangPeng) Zhao
parent 1bb6d3b8ab
commit 2f34581fc2
1 changed files with 3 additions and 1 deletions

View File

@ -41,12 +41,14 @@ $ kubectl get namespaces
NAME STATUS AGE
default Active 1d
kube-system Active 1d
kube-public Active 1d
```
Kubernetes starts with two initial namespaces:
Kubernetes starts with three initial namespaces:
* `default` The default namespace for objects with no other namespace
* `kube-system` The namespace for objects created by the Kubernetes system
* `kube-public` The namespace is created automatically and readable by all users (including those not authenticated).
### Setting the namespace for a request