Skip to content

Commit 5f17cfd

Browse files
authored
Fix Incorrect URLs
1 parent 095c51a commit 5f17cfd

File tree

1 file changed

+8
-9
lines changed
  • content/zh/docs/concepts/architecture

1 file changed

+8
-9
lines changed

content/zh/docs/concepts/architecture/nodes.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ weight: 10
1717
<!--
1818
Kubernetes runs your workload by placing containers into Pods to run on _Nodes_.
1919
A node may be a virtual or physical machine, depending on the cluster. Each node
20-
is managed by the
21-
{{< glossary_tooltip text="control plane" term_id="control-plane" >}}
22-
and contains the services necessary to run
23-
{{< glossary_tooltip text="Pods" term_id="pod" >}}
20+
contains the services necessary to run
21+
{{< glossary_tooltip text="Pods" term_id="pod" >}}, managed by the
22+
{{< glossary_tooltip text="control plane" term_id="control-plane" >}}.
2423
2524
Typically you have several nodes in a cluster; in a learning or resource-limited
2625
environment, you might have just one.
@@ -31,9 +30,9 @@ The [components](/docs/concepts/overview/components/#node-components) on a node
3130
{{< glossary_tooltip text="kube-proxy" term_id="kube-proxy" >}}.
3231
-->
3332
Kubernetes 通过将容器放入在节点(Node)上运行的 Pod 中来执行你的工作负载。
34-
节点可以是一个虚拟机或者物理机器,取决于所在的集群配置。每个节点由
35-
{{< glossary_tooltip text="控制面" term_id="control-plane" >}} 负责管理
36-
并包含运行 {{< glossary_tooltip text="Pods" term_id="pod" >}} 所需的服务
33+
节点可以是一个虚拟机或者物理机器,取决于所在的集群配置。
34+
每个节点包含运行 {{< glossary_tooltip text="Pods" term_id="pod" >}} 所需的服务
35+
这些 Pods 由 {{< glossary_tooltip text="控制面" term_id="control-plane" >}} 负责管理
3736

3837
通常集群中会有若干个节点;而在一个学习用或者资源受限的环境中,你的集群中也可能
3938
只有一个节点。
@@ -121,7 +120,7 @@ register itself with the API server. This is the preferred pattern, used by mos
121120
122121
For self-registration, the kubelet is started with the following options:
123122
-->
124-
### 节点自注册
123+
### 节点自注册 {#self-registration-of-nodes}
125124

126125
当 kubelet 标志 `--register-node` 为 true(默认)时,它会尝试向 API 服务注册自己。
127126
这是首选模式,被绝大多数发行版选用。
@@ -171,7 +170,7 @@ When you want to create Node objects manually, set the kubelet flag `--register-
171170
You can modify Node objects regardless of the setting of `--register-node`.
172171
For example, you can set labels on an existing Node, or mark it unschedulable.
173172
-->
174-
### 手动节点管理
173+
### 手动节点管理 {#manual-node-administration}
175174

176175
你可以使用 {{< glossary_tooltip text="kubectl" term_id="kubectl" >}}
177176
来创建和修改 Node 对象。

0 commit comments

Comments
 (0)