Skip to content

Commit 40095e3

Browse files
committed
[zh] Resync docs/concepts/overview/components.md
1 parent b21d818 commit 40095e3

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

content/zh/docs/concepts/overview/components.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ card:
2424

2525
<!--
2626
When you deploy Kubernetes, you get a cluster.
27-
{< glossary_definition term_id="cluster" length="all" prepend="A Kubernetes cluster consists of">}}
27+
{{< glossary_definition term_id="cluster" length="all" prepend="A Kubernetes cluster consists of">}}
2828
2929
This document outlines the various components you need to have
3030
a complete and working Kubernetes cluster.
3131
3232
Here's the diagram of a Kubernetes cluster with all the components tied together.
3333
34-
![Components of Kubernetes](/images/docs/components-of-kubernetes.png)
34+
![Components of Kubernetes](/images/docs/components-of-kubernetes.svg)
3535
-->
3636
<!-- overview -->
3737
当你部署完 Kubernetes, 即拥有了一个完整的集群。
@@ -41,22 +41,22 @@ Here's the diagram of a Kubernetes cluster with all the components tied together
4141

4242
这张图表展示了包含所有相互关联组件的 Kubernetes 集群。
4343

44-
![Kubernetes 组件](/images/docs/components-of-kubernetes.png)
44+
![Kubernetes 组件](/images/docs/components-of-kubernetes.svg)
4545

4646
<!-- body -->
4747

4848
<!--
4949
## Control Plane Components
5050
51-
The Control Plane's components make global decisions about the cluster (for example, scheduling), as well as detecting and responding to cluster events (for example, starting up a new {{< glossary_tooltip text="pod" term_id="pod">}} when a deployment's `replicas` field is unsatisfied).
51+
The control plane's components make global decisions about the cluster (for example, scheduling), as well as detecting and responding to cluster events (for example, starting up a new {{< glossary_tooltip text="pod" term_id="pod">}} when a deployment's `replicas` field is unsatisfied).
5252
-->
5353
## 控制平面组件(Control Plane Components) {#control-plane-components}
5454

5555
控制平面的组件对集群做出全局决策(比如调度),以及检测和响应集群事件(例如,当不满足部署的 `replicas` 字段时,启动新的 {{< glossary_tooltip text="pod" term_id="pod">}})。
5656

5757
<!--
58-
Control Plane components can be run on any machine in the cluster. However,
59-
for simplicity, set up scripts typically start all Control Plane components on
58+
Control plane components can be run on any machine in the cluster. However,
59+
for simplicity, set up scripts typically start all control plane components on
6060
the same machine, and do not run user containers on this machine. See
6161
[Building High-Availability Clusters](/docs/admin/high-availability/) for an example multi-master-VM setup.
6262
-->
@@ -84,11 +84,11 @@ the same machine, and do not run user containers on this machine. See
8484
<!--
8585
These controllers include:
8686
87-
* Node Controller: Responsible for noticing and responding when nodes go down.
88-
* Replication Controller: Responsible for maintaining the correct number of pods for every replication
87+
* Node controller: Responsible for noticing and responding when nodes go down.
88+
* Replication controller: Responsible for maintaining the correct number of pods for every replication
8989
controller object in the system.
90-
* Endpoints Controller: Populates the Endpoints object (that is, joins Services & Pods).
91-
* Service Account & Token Controllers: Create default accounts and API access tokens for new namespaces.
90+
* Endpoints controller: Populates the Endpoints object (that is, joins Services & Pods).
91+
* Service Account & Token controllers: Create default accounts and API access tokens for new namespaces.
9292
-->
9393
这些控制器包括:
9494

@@ -118,9 +118,9 @@ The following controllers can have cloud provider dependencies:
118118

119119
{{< glossary_definition term_id="cloud-controller-manager" length="short" >}}
120120

121-
`cloud-controller-manager` 进运行特定于云平台的控制回路
121+
`cloud-controller-manager` 仅运行特定于云平台的控制回路
122122
如果你在自己的环境中运行 Kubernetes,或者在本地计算机中运行学习环境,
123-
所部属的环境中不需要云控制器管理器
123+
所部署的环境中不需要云控制器管理器
124124

125125
`kube-controller-manager` 类似,`cloud-controller-manager` 将若干逻辑上独立的
126126
控制回路组合到同一个可执行文件中,供你以同一进程的方式运行。
@@ -221,7 +221,7 @@ about containers in a central database, and provides a UI for browsing that data
221221
<!--
222222
### Cluster-level Logging
223223
224-
A [Cluster-level logging](/docs/concepts/cluster-administration/logging/) mechanism is responsible for
224+
A [cluster-level logging](/docs/concepts/cluster-administration/logging/) mechanism is responsible for
225225
saving container logs to a central log store with search/browsing interface.
226226
-->
227227
### 集群层面日志
@@ -234,7 +234,7 @@ saving container logs to a central log store with search/browsing interface.
234234
<!--
235235
* Learn about [Nodes](/docs/concepts/architecture/nodes/)
236236
* Learn about [Controllers](/docs/concepts/architecture/controller/)
237-
* Learn about [kube-scheduler](/docs/concepts/scheduling/kube-scheduler/)
237+
* Learn about [kube-scheduler](/docs/concepts/scheduling-eviction/kube-scheduler/)
238238
* Read etcd's official [documentation](https://etcd.io/docs/)
239239
-->
240240
* 进一步了解[节点](/zh/docs/concepts/architecture/nodes/)

0 commit comments

Comments
 (0)