Skip to content

Commit c04a7c0

Browse files
authored
Merge pull request #36517 from ydFu/new-update-reference-glossary-8
[zh] Update reference\glossary (8)
2 parents 113a9cd + 24d17ed commit c04a7c0

File tree

5 files changed

+9
-20
lines changed

5 files changed

+9
-20
lines changed

content/zh-cn/docs/reference/glossary/cloud-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ elements such as load balancers.
5454
负责管理其上运行的各层软件,例如运行一个 Kubernetes 集群。
5555

5656
你也会看到 Kubernetes 被作为托管服务提供;有时也称作平台即服务或 PaaS。
57-
针对托管的 Kubernetes,你的云提供商负责 Kubernetes 的控制面以及
57+
针对托管的 Kubernetes,你的云提供商负责 Kubernetes 的控制平面以及
5858
{{< glossary_tooltip term_id="node" text="节点" >}} 及他们所依赖的基础设施:
5959
网络、存储以及其他一些诸如负载均衡器之类的元素。

content/zh-cn/docs/reference/glossary/contributor.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,10 @@ tags:
2727
<!--
2828
Someone who donates code, documentation, or their time to help the Kubernetes project or community.
2929
-->
30-
3130
通过贡献代码、文档或者投入时间等方式来帮助 Kubernetes 项目或社区的人。
3231

3332
<!--more-->
3433
<!--
3534
Contributions include pull requests (PRs), issues, feedback, {{< glossary_tooltip text="special interest groups (SIG)" term_id="sig" >}} participation, or organizing community events.
3635
-->
37-
3836
贡献形式包括提交拉取请求(PRs)、问题报告(Issues)、反馈、参与{{< glossary_tooltip text="特别兴趣小组(SIG)" term_id="sig" >}}或者组织社区活动等等。
39-

content/zh-cn/docs/reference/glossary/control-plane.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ tags:
5050
* {{< glossary_tooltip text="控制器管理器" term_id="kube-controller-manager" >}}
5151
* {{< glossary_tooltip text="云控制器管理器" term_id="cloud-controller-manager" >}}
5252

53-
这些组件可以以传统的系统服务运行也可以以容器的形式运行.运行这些组件的主机过去称为 master 节点。
53+
这些组件可以作为传统的操作系统服务(守护程序)或容器运行。运行这些组件的主机在历史上被称为 {{<glossary_tooltip text="masters" term_id="master" >}}。

content/zh-cn/docs/reference/glossary/controller.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ id: controller
44
date: 2018-04-12
55
full_link: /zh-cn/docs/concepts/architecture/controller/
66
short_description: >
7-
控制器通过 apiserver 监控集群的公共状态,并致力于将当前状态转变为期望的状态。
7+
控制器通过 API 服务器监控集群的公共状态,并致力于将当前状态转变为期望的状态。
88
99
aka:
1010
tags:
1111
- architecture
1212
- fundamental
1313
---
14-
1514
<!--
16-
---
1715
title: Controller
1816
id: controller
1917
date: 2018-04-12
@@ -25,7 +23,6 @@ aka:
2523
tags:
2624
- architecture
2725
- fundamental
28-
---
2926
-->
3027
3128
<!--
@@ -35,20 +32,18 @@ changes where needed.
3532
Each controller tries to move the current cluster state closer to the desired
3633
state.
3734
-->
38-
3935
在 Kubernetes 中,控制器通过监控{{< glossary_tooltip text="集群" term_id="cluster" >}}
4036
的公共状态,并致力于将当前状态转变为期望的状态。
4137

42-
<!--more-->
43-
38+
<!--more-->
4439
4540
<!--
4641
Controllers watch the shared state of your cluster through the
4742
{{< glossary_tooltip text="apiserver" term_id="kube-apiserver" >}} (part of the
4843
{{< glossary_tooltip term_id="control-plane" >}}).
4944
-->
5045
控制器({{< glossary_tooltip text="控制平面" term_id="control-plane" >}}的一部分)
51-
通过 {{< glossary_tooltip text="apiserver" term_id="kube-apiserver" >}} 监控你的集群中的公共状态。
46+
通过 {{< glossary_tooltip text="API 服务器" term_id="kube-apiserver" >}}监控你的集群中的公共状态。
5247

5348
<!--
5449
Some controllers also run inside the control plane, providing control loops that
@@ -59,6 +54,5 @@ controller (and others) all run within the
5954
-->
6055
其中一些控制器是运行在控制平面内部的,对 Kubernetes 来说,他们提供核心控制操作。
6156
比如:部署控制器(deployment controller)、守护控制器(daemonset controller)、
62-
命名空间控制器(namespace controller)、持久化数据卷控制器(persistent volume
63-
controller)(等)都是运行在 {{< glossary_tooltip text="kube-controller-manager" term_id="kube-controller-manager" >}} 中的。
64-
57+
命名空间控制器(namespace controller)、持久化数据卷控制器(persistent volume controller)(等)
58+
都是运行在 {{< glossary_tooltip text="kube-controller-manager" term_id="kube-controller-manager" >}} 中的。

content/zh-cn/docs/reference/glossary/cri-o.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ aka:
1010
tags:
1111
- tool
1212
---
13-
1413
<!--
1514
title: CRI-O
1615
id: cri-o
@@ -37,7 +36,7 @@ runtimes that are compatible with the Open Container Initiative (OCI)
3736
[runtime spec](https://www.github.com/opencontainers/runtime-spec).
3837
-->
3938
CRI-O 是 {{< glossary_tooltip text="CRI" term_id="cri" >}} 的一种实现,
40-
使得你可以使用与开放容器倡议(Open Container InitiativeOCI)
39+
使得你可以使用与开放容器倡议(Open Container InitiativeOCI)
4140
[运行时规范](https://www.github.com/opencontainers/runtime-spec)
4241
兼容的{{< glossary_tooltip text="容器" term_id="container" >}}。
4342

@@ -47,6 +46,5 @@ runtime for running {{< glossary_tooltip text="Pods" term_id="pod" >}}, and to f
4746
OCI container images from remote registries.
4847
-->
4948
部署 CRI-O 允许 Kubernetes 使用任何符合 OCI 要求的运行时作为容器运行时
50-
去运行 {{< glossary_tooltip text="Pods" term_id="pod" >}},
49+
去运行 {{< glossary_tooltip text="Pod" term_id="pod" >}},
5150
并从远程容器仓库获取 OCI 容器镜像。
52-

0 commit comments

Comments
 (0)