@@ -24,14 +24,14 @@ card:
24
24
25
25
<!--
26
26
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">}}
28
28
29
29
This document outlines the various components you need to have
30
30
a complete and working Kubernetes cluster.
31
31
32
32
Here's the diagram of a Kubernetes cluster with all the components tied together.
33
33
34
- 
34
+ 
35
35
-->
36
36
<!-- overview -->
37
37
当你部署完 Kubernetes, 即拥有了一个完整的集群。
@@ -41,22 +41,22 @@ Here's the diagram of a Kubernetes cluster with all the components tied together
41
41
42
42
这张图表展示了包含所有相互关联组件的 Kubernetes 集群。
43
43
44
- ![ Kubernetes 组件] ( /images/docs/components-of-kubernetes.png )
44
+ ![ Kubernetes 组件] ( /images/docs/components-of-kubernetes.svg )
45
45
46
46
<!-- body -->
47
47
48
48
<!--
49
49
## Control Plane Components
50
50
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).
52
52
-->
53
53
## 控制平面组件(Control Plane Components) {#control-plane-components}
54
54
55
55
控制平面的组件对集群做出全局决策(比如调度),以及检测和响应集群事件(例如,当不满足部署的 ` replicas ` 字段时,启动新的 {{< glossary_tooltip text="pod" term_id="pod">}})。
56
56
57
57
<!--
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
60
60
the same machine, and do not run user containers on this machine. See
61
61
[Building High-Availability Clusters](/docs/admin/high-availability/) for an example multi-master-VM setup.
62
62
-->
@@ -84,11 +84,11 @@ the same machine, and do not run user containers on this machine. See
84
84
<!--
85
85
These controllers include:
86
86
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
89
89
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.
92
92
-->
93
93
这些控制器包括:
94
94
@@ -118,9 +118,9 @@ The following controllers can have cloud provider dependencies:
118
118
119
119
{{< glossary_definition term_id="cloud-controller-manager" length="short" >}}
120
120
121
- ` cloud-controller-manager ` 进运行特定于云平台的控制回路 。
121
+ ` cloud-controller-manager ` 仅运行特定于云平台的控制回路 。
122
122
如果你在自己的环境中运行 Kubernetes,或者在本地计算机中运行学习环境,
123
- 所部属的环境中不需要云控制器管理器 。
123
+ 所部署的环境中不需要云控制器管理器 。
124
124
125
125
与 ` kube-controller-manager ` 类似,` cloud-controller-manager ` 将若干逻辑上独立的
126
126
控制回路组合到同一个可执行文件中,供你以同一进程的方式运行。
@@ -221,7 +221,7 @@ about containers in a central database, and provides a UI for browsing that data
221
221
<!--
222
222
### Cluster-level Logging
223
223
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
225
225
saving container logs to a central log store with search/browsing interface.
226
226
-->
227
227
### 集群层面日志
@@ -234,7 +234,7 @@ saving container logs to a central log store with search/browsing interface.
234
234
<!--
235
235
* Learn about [Nodes](/docs/concepts/architecture/nodes/)
236
236
* 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/)
238
238
* Read etcd's official [documentation](https://etcd.io/docs/)
239
239
-->
240
240
* 进一步了解[ 节点] ( /zh/docs/concepts/architecture/nodes/ )
0 commit comments