Skip to content

Commit cea8814

Browse files
committed
update content/zh/docs/concepts/overview/components.md
1 parent fbe2cb0 commit cea8814

File tree

1 file changed

+30
-16
lines changed

1 file changed

+30
-16
lines changed

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

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,45 @@ card:
2121

2222
{{% capture overview %}}
2323
<!--
24-
This document outlines the various binary components needed to
25-
deliver a functioning Kubernetes cluster.
24+
When you deploy Kubernetes, you get a cluster.
25+
{{< glossary_definition term_id="cluster" length="all" prepend="A Kubernetes cluster consists of">}}
26+
27+
This document outlines the various components you need to have
28+
a complete and working Kubernetes cluster.
29+
30+
Here's the diagram of a Kubernetes cluster with all the components tied together.
31+
32+
![Components of Kubernetes](/images/docs/components-of-kubernetes.png)
2633
-->
27-
本文档概述了交付正常运行的 Kubernetes 集群所需的各种二进制组件。
34+
当你部署完 Kubernetes, 即拥有了一个完整的集群。
35+
{{< glossary_definition term_id="cluster" length="all" prepend="一个 Kubernetes 集群包含">}}
36+
37+
本文档概述了交付正常运行的 Kubernetes 集群所需的各种组件。
38+
39+
这张图表展示了包含所有相互关联组件的完整 Kubernetes 集群。
40+
41+
![Components of Kubernetes](/images/docs/components-of-kubernetes.png)
42+
2843
{{% /capture %}}
2944

3045
{{% capture body %}}
31-
<!--
32-
## Master Components
46+
<!--
47+
## Control Plane Components
3348
-->
34-
## Master 组件
49+
## 控制平面组件(Control Plane Components)
3550

36-
<!--
37-
Master components provide the cluster's control plane. Master components make global decisions about the
38-
cluster (for example, scheduling), and they detect and respond to cluster events (for example, starting up a new {{< glossary_tooltip text="pod" term_id="pod">}} when a deployment's `replicas` field is unsatisfied).
39-
-->
40-
Master 组件提供集群的控制平面。Master 组件对集群进行全局决策(例如,调度),并检测和响应集群事件(例如,当不满足部署的 `replicas` 字段时,启动新的 {{< glossary_tooltip text="pod" term_id="pod">}})。
51+
<!--
52+
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).
53+
-->
54+
控制平面的组件对集群做出全局决策(比如调度),以及检测和响应集群事件(例如,当不满足部署的 `replicas` 字段时,启动新的 {{< glossary_tooltip text="pod" term_id="pod">}})。
4155

42-
<!--
43-
Master components can be run on any machine in the cluster. However,
44-
for simplicity, set up scripts typically start all master components on
56+
<!--
57+
Control Plane components can be run on any machine in the cluster. However,
58+
for simplicity, set up scripts typically start all Control Plane components on
4559
the same machine, and do not run user containers on this machine. See
4660
[Building High-Availability Clusters](/docs/admin/high-availability/) for an example multi-master-VM setup.
47-
-->
48-
Master 组件可以在集群中的任何节点上运行。然而,为了简单起见,安装脚本通常会启动同一个计算机上所有 Master 组件,并且不会在计算机上运行用户容器。请参阅[构建高可用性集群](/docs/admin/high-availability/)示例对于多主机 VM 的安装。
61+
-->
62+
控制平面组件可以在集群中的任何节点上运行。然而,为了简单起见,安装脚本通常会启动同一个计算机上所有控制平面组件,并且不会在计算机上运行用户容器。请参阅[构建高可用性集群](/docs/admin/high-availability/)示例对于多主机 VM 的安装。
4963

5064
### kube-apiserver
5165

0 commit comments

Comments
 (0)