On Thursday, May 26, 2016, Qian Zhang <[email protected]> wrote: > Hi, > > It seems "kube-system" namespace will be created by default, can anyone > let me know what its main purpose is? > I see both kube-dns and dashboard should be created in "kube-system" > namespace, but I do not know why. Is it because kube-dns and dashboard > should be running on the master rather than on a node? >
No, it's running on nodes, just as other pods. Do "kubectl get pods --all-namespaces -o wide" to see in which nodes they are running. Namespaces can have defaults for the resources and limits a pod can have, and as the number of RCs, etc. So it's better to have them in a k8s namespaces and not mixed with all the rest of the pods. Also, it's more clear and readable, etc. -- You received this message because you are subscribed to the Google Groups "Containers at Google" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-containers. For more options, visit https://groups.google.com/d/optout.
