From 2f34581fc2d377f729b05712602479521d05794f Mon Sep 17 00:00:00 2001 From: zhangxiaoyu-zidif Date: Sun, 22 Oct 2017 11:41:19 +0800 Subject: [PATCH] describe what is kube-public --- docs/concepts/overview/working-with-objects/namespaces.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/concepts/overview/working-with-objects/namespaces.md b/docs/concepts/overview/working-with-objects/namespaces.md index 0b3dfdbd1d..17d92d0e8a 100644 --- a/docs/concepts/overview/working-with-objects/namespaces.md +++ b/docs/concepts/overview/working-with-objects/namespaces.md @@ -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