Skip to content

Commit b9d2bbd

Browse files
committed
[zh] Sync glossary reference
1 parent dba6763 commit b9d2bbd

14 files changed

+145
-115
lines changed

content/zh/docs/reference/glossary/cluster-infrastructure.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tags:
1212
---
1313

1414
<!--
15-
---
1615
title: Cluster Infrastructure
1716
id: cluster-infrastructure
1817
date: 2019-05-12
@@ -23,9 +22,8 @@ short_description: >
2322
aka:
2423
tags:
2524
- operation
26-
---
2725
-->
2826
<!--
2927
The infrastructure layer provides and maintains VMs, networking, security groups and others.
3028
-->
31-
基础设施层提供并维护虚拟机、网络、安全组及其他资源。
29+
基础设施层提供并维护虚拟机、网络、安全组及其他资源。

content/zh/docs/reference/glossary/container.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ tags:
1313
---
1414

1515
<!--
16-
---
1716
title: Container
1817
id: container
1918
date: 2018-04-12
@@ -25,20 +24,17 @@ aka:
2524
tags:
2625
- fundamental
2726
- workload
28-
---
2927
-->
3028

3129
<!--
3230
A lightweight and portable executable image that contains software and all of its dependencies.
3331
-->
34-
35-
容器是可移植、可执行的轻量级的镜像,包含其中的软件及其相关依赖。
32+
容器是可移植、可执行的轻量级的镜像,包含其中的软件及其相关依赖。
3633

3734
<!--more-->
3835

3936
<!--
4037
Containers decouple applications from underlying host infrastructure to make deployment easier in different cloud or OS environments, and for easier scaling.
4138
-->
42-
4339
容器使应用和底层的主机基础设施解耦,降低了应用在不同云环境或者操作系统上的部署难度,便于应用扩展。
4440

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

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ id: control-plane
44
date: 2019-05-12
55
full_link:
66
short_description: >
7-
Control Plane(控制平面)是指容器编排层,它暴露 API 和接口来定义、部署容器和管理容器的生命周期。
7+
控制平面是指容器编排层,它暴露 API 和接口来定义、部署容器和管理容器的生命周期。
88
99
aka:
1010
tags:
1111
- fundamental
12-
---
13-
14-
<!--
1512
---
13+
<!--
1614
title: Control Plane
1715
id: control-plane
1816
date: 2019-05-12
@@ -23,18 +21,16 @@ short_description: >
2321
aka:
2422
tags:
2523
- fundamental
26-
---
2724
-->
2825

2926
<!--
3027
The container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers.
3128
-->
32-
Control Plane(控制平面)是指容器编排层,它暴露 API 和接口来定义、部署容器和管理容器的生命周期。
33-
29+
控制平面(Control Plane)是指容器编排层,它暴露 API 和接口来定义、
30+
部署容器和管理容器的生命周期。
31+
3432
<!--
3533
This layer is composed by many different components, such as (but not restricted to):
36-
37-
3834
3935
* {{< glossary_tooltip text="etcd" term_id="etcd" >}}
4036
* {{< glossary_tooltip text="API Server" term_id="kube-apiserver" >}}
@@ -47,9 +43,9 @@ tags:
4743
这个编排层是由多个不同的组件组成,例如以下(但不限于)几种:
4844

4945
* {{< glossary_tooltip text="etcd" term_id="etcd" >}}
50-
* {{< glossary_tooltip text="API Server" term_id="kube-apiserver" >}}
51-
* {{< glossary_tooltip text="Scheduler" term_id="kube-scheduler" >}}
52-
* {{< glossary_tooltip text="Controller Manager" term_id="kube-controller-manager" >}}
53-
* {{< glossary_tooltip text="Cloud Controller Manager" term_id="cloud-controller-manager" >}}
46+
* {{< glossary_tooltip text="API 服务器" term_id="kube-apiserver" >}}
47+
* {{< glossary_tooltip text="调度器" term_id="kube-scheduler" >}}
48+
* {{< glossary_tooltip text="控制器管理器" term_id="kube-controller-manager" >}}
49+
* {{< glossary_tooltip text="云控制器管理器" term_id="cloud-controller-manager" >}}
5450

55-
这些组件可以以传统的系统服务运行也可以以容器的形式运行.运行这些组件的主机过去称为 master 节点。
51+
这些组件可以以传统的系统服务运行也可以以容器的形式运行.运行这些组件的主机过去称为 master 节点。

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tags:
1212
---
1313

1414
<!--
15-
---
1615
title: CRI-O
1716
id: cri-o
1817
date: 2019-05-14
@@ -23,11 +22,11 @@ short_description: >
2322
aka:
2423
tags:
2524
- tool
26-
--- -->
25+
-->
2726
<!--
2827
A tool that lets you use OCI container runtimes with Kubernetes CRI.
2928
-->
30-
该工具可让您通过 Kubernetes CRI 使用 OCI 容器运行环境
29+
该工具可让你通过 Kubernetes CRI 使用 OCI 容器运行时
3130

3231
<!--more-->
3332

@@ -37,13 +36,17 @@ to enable using {{< glossary_tooltip text="container" term_id="container" >}}
3736
runtimes that are compatible with the Open Container Initiative (OCI)
3837
[runtime spec](https://www.github.com/opencontainers/runtime-spec).
3938
-->
40-
CRI-O 是 {{< glossary_tooltip text="cri" term_id="cri" >}} 的实现,与开放容器倡议 Open Container Initiative(OCI)兼容的 {{< glossary_tooltip text="container" term_id="container" >}} [运行时规范](https://www.github.com/opencontainers/runtime-spec)
39+
CRI-O 是 {{< glossary_tooltip text="CRI" term_id="cri" >}} 的一种实现,
40+
使得你可以使用与开放容器倡议(Open Container Initiative,OCI)
41+
[运行时规范](https://www.github.com/opencontainers/runtime-spec)
42+
兼容的{{< glossary_tooltip text="容器" term_id="container" >}}。
4143

4244
<!--
4345
Deploying CRI-O allows Kubernetes to use any OCI-compliant runtime as the container
4446
runtime for running {{< glossary_tooltip text="Pods" term_id="pod" >}}, and to fetch
4547
OCI container images from remote registries.
4648
-->
47-
部署 CRI-O 允许 Kubernetes 使用任何符合 OCI 的运行时,
48-
作为容器运行环境去运行 {{< glossary_tooltip text="Pods" term_id="pod" >}},
49-
并从远程注册表获取 OCI 容器镜像。
49+
部署 CRI-O 允许 Kubernetes 使用任何符合 OCI 要求的运行时作为容器运行时
50+
去运行 {{< glossary_tooltip text="Pods" term_id="pod" >}},
51+
并从远程容器仓库获取 OCI 容器镜像。
52+

content/zh/docs/reference/glossary/kubeadm.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Kubeadm
33
id: kubeadm
44
date: 2018-04-12
5-
full_link: /docs/admin/kubeadm/
5+
full_link: /zh/docs/setup/production-environment/tools/kubeadm/
66
short_description: >
77
用来快速安装 Kubernetes 并搭建安全稳定的集群的工具。
88
@@ -13,7 +13,6 @@ tags:
1313
---
1414

1515
<!--
16-
---
1716
title: Kubeadm
1817
id: kubeadm
1918
date: 2018-04-12
@@ -25,19 +24,19 @@ aka:
2524
tags:
2625
- tool
2726
- operation
28-
---
2927
-->
3028

3129
<!--
3230
A tool for quickly installing Kubernetes and setting up a secure cluster.
3331
-->
34-
35-
用来快速安装 Kubernetes 并搭建安全稳定的集群的工具。
32+
用来快速安装 Kubernetes 并搭建安全稳定的集群的工具。
3633

3734
<!--more-->
3835

3936
<!--
40-
You can use kubeadm to install both the control plane and the worker node components.
37+
You can use kubeadm to install both the control plane and the {{< glossary_tooltip text="worker node" term_id="node" >}} components.
4138
-->
39+
你可以使用 kubeadm 安装控制面和
40+
{{< glossary_tooltip text="工作节点" term_id="node" >}}
41+
组件。
4242

43-
您可以使用 kubeadm 安装控制面和工作节点组件。

content/zh/docs/reference/glossary/kubelet.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ tags:
1212
- core-object
1313
---
1414
<!--
15-
---
1615
title: Kubelet
1716
id: kubelet
1817
date: 2018-04-12
@@ -24,17 +23,20 @@ aka:
2423
tags:
2524
- fundamental
2625
- core-object
27-
---
2826
-->
27+
2928
<!--
30-
An agent that runs on each node in the cluster. It makes sure that containers are running in a pod.
29+
An agent that runs on each {{< glossary_tooltip text="node" term_id="node" >}} in the cluster. It makes sure that {{< glossary_tooltip text="containers" term_id="container" >}} are running in a {{< glossary_tooltip text="Pod" term_id="pod" >}}.
3130
-->
32-
一个在集群中每个节点上运行的代理。它保证容器都运行在 Pod 中。
31+
一个在集群中每个节点上运行的代理。
32+
它保证容器都运行在 Pod 中。
3333

3434
<!--more-->
3535

3636
<!--
3737
The kubelet takes a set of PodSpecs that are provided through various mechanisms and ensures that the containers described in those PodSpecs are running and healthy. The kubelet doesn’t manage containers which were not created by Kubernetes.
3838
-->
39+
kubelet 接收一组通过各类机制提供给它的 PodSpecs,确保这些 PodSpecs
40+
中描述的容器处于运行状态且健康。
41+
kubelet 不会管理不是由 Kubernetes 创建的容器。
3942

40-
kubelet 接收一组通过各类机制提供给它的 PodSpecs,确保这些 PodSpecs 中描述的容器处于运行状态且健康。kubelet 不会管理不是由 Kubernetes 创建的容器。

content/zh/docs/reference/glossary/node.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 节点
2+
title: 节点(Node)
33
id: node
44
date: 2018-04-12
55
full_link: /zh/docs/concepts/architecture/nodes/
@@ -25,19 +25,26 @@ tags:
2525
-->
2626

2727
<!--
28-
A node is a worker machine in Kubernetes.
28+
A node is a worker machine in Kubernetes.
2929
-->
30-
3130
Kubernetes 中的工作机器称作节点。
3231

3332
<!--more-->
3433

3534
<!--
36-
A worker machine may be a VM or physical machine, depending on the cluster. It has the {{< glossary_tooltip text="Services" term_id="service" >}} necessary to run {{< glossary_tooltip text="Pods" term_id="pod" >}} and is managed by the master components. The {{< glossary_tooltip text="Services" term_id="service" >}} on a node include Docker, kubelet and kube-proxy.
37-
-->
35+
A worker node may be a VM or physical machine, depending on the cluster. It has local daemons or services necessary to run {{< glossary_tooltip text="Pods" term_id="pod" >}} and is managed by the control plane. The daemons on a node include {{< glossary_tooltip text="kubelet" term_id="kubelet" >}}, {{< glossary_tooltip text="kube-proxy" term_id="kube-proxy" >}}, and a container runtime implementing the {{< glossary_tooltip text="CRI" term_id="cri" >}} such as {{< glossary_tooltip term_id="docker" >}}.
3836
37+
In early Kubernetes versions, Nodes were called "Minions".
38+
-->
3939
工作机器可以是虚拟机也可以是物理机,取决于集群的配置。
40-
其上部署了运行 {{< glossary_tooltip text="Pods" term_id="pod" >}} 所必需的{{< glossary_tooltip text="服务" term_id="service" >}},
40+
其上部署了运行 {{< glossary_tooltip text="Pods" term_id="pod" >}}
41+
所必需的本地守护进程或{{< glossary_tooltip text="服务" term_id="service" >}},
4142
并由主控组件来管理。
42-
节点上的{{< glossary_tooltip text="服务" term_id="service" >}}包括 Docker、kubelet 和 kube-proxy。
43+
节点上的的守护进程包括 {{< glossary_tooltip text="kubelet" term_id="kubelet" >}}、
44+
{{< glossary_tooltip text="kube-proxy" term_id="kube-proxy" >}}
45+
以及一个 {{< glossary_tooltip term_id="docker" >}} 这种
46+
实现了 {{< glossary_tooltip text="CRI" term_id="cri" >}}
47+
的容器运行时。
48+
49+
在早期的 Kubernetes 版本中,节点也称作 "Minions"。
4350

content/zh/docs/reference/glossary/platform-developer.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 平台开发者
2+
title: 平台开发人员(Platform Developer)
33
id: platform-developer
44
date: 2018-04-12
55
full_link:
@@ -12,7 +12,6 @@ tags:
1212
---
1313

1414
<!--
15-
---
1615
title: Platform Developer
1716
id: platform-developer
1817
date: 2018-04-12
@@ -23,20 +22,29 @@ short_description: >
2322
aka:
2423
tags:
2524
- user-type
26-
---
2725
-->
2826

2927
<!--
30-
A person who customizes the Kubernetes platform to fit the needs of their project.
28+
A person who customizes the Kubernetes platform to fit the needs of their project.
3129
-->
3230

33-
定制 Kubernetes 平台以满足自己的项目需求的人。
31+
定制 Kubernetes 平台以满足自己的项目需求的人。
3432

3533
<!--more-->
3634

3735
<!--
38-
A platform developer may, for example, use [Custom Resources](/docs/concepts/api-extension/custom-resources/) or [Extend the Kubernetes API with the aggregation layer](/docs/concepts/api-extension/apiserver-aggregation/) to add functionality to their instance of Kubernetes, specifically for their application. Some Platform Developers are also {{< glossary_tooltip text="contributors" term_id="contributor" >}} and develop extensions which are contributed to the Kubernetes community. Others develop closed-source commercial or site-specific extensions.
36+
A platform developer may, for example, use [Custom Resources](/docs/concepts/extend-kubernetes/api-extension/custom-resources/) or
37+
[Extend the Kubernetes API with the aggregation layer](/docs/concepts/extend-kubernetes/api-extension/apiserver-aggregation/)
38+
to add functionality to their instance of Kubernetes, specifically for their application.
39+
Some Platform Developers are also {{< glossary_tooltip text="contributors" term_id="contributor" >}} and
40+
develop extensions which are contributed to the Kubernetes community.
41+
Others develop closed-source commercial or site-specific extensions.
3942
-->
4043

41-
例如,平台开发人员可以使用[定制资源](/docs/concepts/api-extension/custom-resources/)[使用汇聚层扩展 Kubernetes API](/docs/concepts/api-extension/apiserver-aggregation/) 来为其 Kubernetes 实例增加功能,特别是为其应用程序添加功能。一些平台开发人员也是 Kubrenetes {{< glossary_tooltip text="贡献者" term_id="contributor" >}},他们会开发贡献给 Kubernetes 社区的扩展;另一些则开发封闭源代码的商业扩展或用于特定功能的扩展。
44+
平台开发人员可以使用[定制资源](/zh/docs/concepts/extend-kubernetes/api-extension/custom-resources/)
45+
[使用汇聚层扩展 Kubernetes API](/zh/docs/concepts/api-extension/apiserver-aggregation/)
46+
来为其 Kubernetes 实例增加功能,特别是为其应用程序添加功能。
47+
一些平台开发人员也是 Kubrenetes {{< glossary_tooltip text="贡献者" term_id="contributor" >}},
48+
他们会开发贡献给 Kubernetes 社区的扩展。
49+
另一些平台开发人员则开发封闭源代码的商业扩展或用于特定网站的扩展。
4250

content/zh/docs/reference/glossary/pod-priority.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
title: Pod 优先级
2+
title: Pod 优先级(Pod Priority)
33
id: pod-priority
44
date: 2019-01-31
5-
full_link: /docs/concepts/configuration/pod-priority-preemption/#pod-priority
5+
full_link: /zh/docs/concepts/configuration/pod-priority-preemption/#pod-priority
66
short_description: >
77
Pod 优先级表示一个 Pod 相对于其他 Pod 的重要性。
88
@@ -12,7 +12,6 @@ tags:
1212
---
1313

1414
<!--
15-
---
1615
title: Pod Priority
1716
id: pod-priority
1817
date: 2019-01-31
@@ -23,7 +22,6 @@ short_description: >
2322
aka:
2423
tags:
2524
- operation
26-
---
2725
-->
2826

2927
<!--
@@ -36,4 +34,7 @@ tags:
3634
<!--
3735
[Pod Priority](/docs/concepts/configuration/pod-priority-preemption/#pod-priority) gives the ability to set scheduling priority of a Pod to be higher and lower than other Pods — an important feature for production clusters workload.
3836
-->
39-
[Pod 优先级](/docs/concepts/configuration/pod-priority-preemption/#pod-priority) 允许为一个 Pod 设置高于或低于其他 Pod 的优先级 -- 这对于生产集群工作负载而言是一个重要的特性。
37+
[Pod 优先级](/zh/docs/concepts/configuration/pod-priority-preemption/#pod-priority)
38+
允许用户为 Pod 设置高于或低于其他 Pod 的优先级 -- 这对于生产集群
39+
工作负载而言是一个重要的特性。
40+

0 commit comments

Comments
 (0)