From 6e0c644061d9dbd01dba4c398919e4f58cdfe813 Mon Sep 17 00:00:00 2001 From: Lon Ilesanmi Date: Sat, 18 Aug 2018 15:05:57 +0100 Subject: [PATCH] Update namespaces.md (#9865) This update is to match similar content here: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ --- content/en/docs/tasks/administer-cluster/namespaces.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/en/docs/tasks/administer-cluster/namespaces.md b/content/en/docs/tasks/administer-cluster/namespaces.md index 77fbc63422..0e24a21dc9 100644 --- a/content/en/docs/tasks/administer-cluster/namespaces.md +++ b/content/en/docs/tasks/administer-cluster/namespaces.md @@ -26,12 +26,14 @@ $ kubectl get namespaces NAME STATUS AGE default Active 11d kube-system Active 11d +kube-public Active 11d ``` -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` This namespace is created automatically and is readable by all users (including those not authenticated). This namespace is mostly reserved for cluster usage, in case that some resources should be visible and readable publicly throughout the whole cluster. The public aspect of this namespace is only a convention, not a requirement. You can also get the summary of a specific namespace using: