You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a production cluster, consider _not_ using the `default` namespace. Instead, make other namespaces and use those.
67
+
-->
68
+
对于生产集群,请考虑**不要**使用 `default` 名字空间,而是创建其他名字空间来使用。
69
+
{{< /note >}}
70
+
71
+
<!--
72
+
## Initial namespaces
73
+
-->
74
+
## 初始名字空间 {#initial-namespaces}
75
+
76
+
<!--
77
+
Kubernetes starts with four initial namespaces:
78
+
79
+
`default`
80
+
: Kubernetes includes this namespace so that you can start using your new cluster without first creating a namespace.
81
+
82
+
`kube-node-lease`
83
+
: This namespace holds [Lease](/docs/reference/kubernetes-api/cluster-resources/lease-v1/) objects associated with each node. Node leases allow the kubelet to send [heartbeats](/docs/concepts/architecture/nodes/#heartbeats) so that the control plane can detect node failure.
84
+
85
+
`kube-public`
86
+
: This namespace is readable by *all* clients (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.
87
+
88
+
`kube-system`
89
+
: The namespace for objects created by the Kubernetes system.
* `default` The default namespace for objects with no other namespace
105
-
* `kube-system` The namespace for objects created by the Kubernetes system
106
-
* `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.
107
-
* `kube-node-lease` This namespace holds [Lease](/docs/reference/kubernetes-api/cluster-resources/lease-v1/)
108
-
objects associated with each node. Node leases allow the kubelet to send
109
-
[heartbeats](/docs/concepts/architecture/nodes/#heartbeats) so that the control plane
0 commit comments