Skip to content

Commit a7a5905

Browse files
authored
Merge pull request #36305 from ydFu/update-reference-glossary-2
[zh] Update reference\glossary (2)
2 parents a7bdf5d + e81d132 commit a7a5905

File tree

7 files changed

+18
-47
lines changed

7 files changed

+18
-47
lines changed

content/zh-cn/docs/reference/glossary/api-eviction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: API 发起的驱逐
2+
title: API 发起的驱逐(API-initiated eviction)
33
id: api-eviction
44
date: 2021-04-27
55
full_link: /zh-cn/docs/concepts/scheduling-eviction/api-eviction/
@@ -54,4 +54,4 @@ API 发起的驱逐不同于
5454
<!--
5555
* See [API-initiated eviction](/docs/concepts/scheduling-eviction/api-eviction/) for more information.
5656
-->
57-
* 有关详细信息,请参阅 [API 发起的驱逐](/zh-cn/docs/concepts/scheduling-eviction/api-eviction/)
57+
* 有关详细信息,请参阅 [API 发起的驱逐](/zh-cn/docs/concepts/scheduling-eviction/api-eviction/)
Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
---
2-
title: API Group
2+
title: API Group (API 组)
33
id: api-group
44
date: 2019-09-02
55
full_link: /zh-cn/docs/concepts/overview/kubernetes-api/#api-groups-and-versioning
66
short_description: >
7-
Kubernetes API 中的一组相关路径
7+
Kubernetes API 中的一组相关路径
88
99
aka:
1010
tags:
1111
- fundamental
1212
- architecture
1313
---
14-
1514
<!--
16-
---
1715
title: API Group
1816
id: api-group
1917
date: 2019-09-02
@@ -24,27 +22,24 @@ short_description: >
2422
aka:
2523
tags:
2624
- fundamental
27-
- architecture
28-
---
25+
- architecture
2926
-->
3027

31-
3228
<!--
3329
A set of related paths in Kubernetes API.
3430
-->
3531
Kubernetes API 中的一组相关路径。
3632

3733
<!--more-->
38-
3934
<!--
4035
You can enable or disable each API group by changing the configuration of your API server. You can also disable or enable paths to specific resources. API group makes it easier to extend the Kubernetes API. The API group is specified in a REST path and in the `apiVersion` field of a serialized object.
4136
-->
42-
通过更改 API server 的配置,可以启用或禁用每个 API Group。
37+
通过更改 API 服务器的配置,可以启用或禁用每个 API 组 (API Group)
4338
你还可以禁用或启用指向特定资源的路径。
44-
API group 使扩展 Kubernetes API 更加的容易。
45-
API group 在 REST 路径和序列化对象的 `apiVersion` 字段中指定。
39+
API 组使扩展 Kubernetes API 更加的容易。
40+
API 组在 REST 路径和序列化对象的 `apiVersion` 字段中指定。
4641

4742
<!--
4843
* Read [API Group](/docs/concepts/overview/kubernetes-api/#api-groups-and-versioning) for more information.
4944
-->
50-
* 阅读 [API Group](/zh-cn/docs/concepts/overview/kubernetes-api/#api-groups-and-versioning) 了解更多信息。
45+
* 阅读 [API ](/zh-cn/docs/concepts/overview/kubernetes-api/#api-groups-and-versioning) 了解更多信息。

content/zh-cn/docs/reference/glossary/app-container.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ id: app-container
44
date: 2019-02-12
55
full_link:
66
short_description: >
7-
用于运行部分工作负载的容器。与初始化容器比较而言
7+
用于运行部分工作负载的容器。与 Init 容器比较而言
88
99
aka:
1010
tags:
1111
- workload
1212
---
13-
1413
<!--
15-
---
1614
title: App Container
1715
id: app-container
1816
date: 2019-02-12
@@ -23,15 +21,14 @@ short_description: >
2321
aka:
2422
tags:
2523
- workload
26-
---
2724
-->
2825

2926
<!--
3027
Application containers (or app containers) are the {{< glossary_tooltip text="containers" term_id="container" >}} in a {{< glossary_tooltip text="pod" term_id="pod" >}} that are started after any {{< glossary_tooltip text="init containers" term_id="init-container" >}} have completed.
3128
-->
32-
应用程序 {{< glossary_tooltip text="容器" term_id="container" >}} (或 app 容器)在 {{< glossary_tooltip text="pod" term_id="pod" >}} 中,在 {{< glossary_tooltip text="初始化容器" term_id="init-container" >}} 启动完毕后才开始启动。
33-
34-
29+
应用程序容器是在 {{< glossary_tooltip text="Pod" term_id="pod" >}}
30+
中的{{< glossary_tooltip text="容器" term_id="container" >}}(或 app 容器),
31+
在 {{< glossary_tooltip text="Init 容器" term_id="init-container" >}}启动完毕后才开始启动。
3532

3633
<!--more-->
3734

@@ -41,7 +38,6 @@ An init container lets you separate initialization details that are important fo
4138
once the application container has started.
4239
If a pod doesn't have any init containers configured, all the containers in that pod are app containers.
4340
-->
44-
45-
初始化容器使你可以分离对于{{< glossary_tooltip text="工作负载" term_id="workload" >}}
46-
整体而言很重要的初始化细节,并且一旦应用容器启动,它不需要继续运行。
47-
如果 pod 没有配置任何初始化容器,则该 pod 中的所有容器都是应用程序容器。
41+
Init 容器使你可以分离对于{{< glossary_tooltip text="工作负载" term_id="workload" >}}整体而言很重要的初始化细节,
42+
并且一旦应用容器启动,它不需要继续运行。
43+
如果 Pod 没有配置 Init 容器,则该 Pod 中的所有容器都是应用程序容器。

content/zh-cn/docs/reference/glossary/application-architect.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ aka:
1010
tags:
1111
- user-type
1212
---
13-
1413
<!--
15-
---
1614
title: Application Architect
1715
id: application-architect
1816
date: 2018-04-12
@@ -23,22 +21,17 @@ short_description: >
2321
aka:
2422
tags:
2523
- user-type
26-
---
2724
-->
2825

2926
<!--
3027
A person responsible for the high-level design of an application.
3128
-->
3229
应用架构师是负责应用高级设计的人。
3330

34-
31+
<!--more-->
3532

36-
37-
<!--more-->
3833
<!--
3934
An architect ensures that an app's implementation allows it to interact with its surrounding components in a scalable, maintainable way. Surrounding components include databases, logging infrastructure, and other microservices.
4035
-->
41-
4236
应用架构师确保应用的实现允许它和周边组件进行可扩展的、可持续的交互。
4337
周边组件包括数据库、日志基础设施和其他微服务。
44-

content/zh-cn/docs/reference/glossary/application-developer.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ aka:
1010
tags:
1111
- user-type
1212
---
13-
1413
<!--
15-
---
1614
title: Application Developer
1715
id: application-developer
1816
date: 2018-04-12
@@ -23,20 +21,16 @@ short_description: >
2321
aka:
2422
tags:
2523
- user-type
26-
---
2724
-->
2825

29-
3026
<!--
3127
A person who writes an application that runs in a Kubernetes cluster.
3228
-->
33-
3429
编写可以在 Kubernetes 集群上运行的应用的人。
3530

3631
<!--more-->
3732

3833
<!--
3934
An application developer focuses on one part of an application. The scale of their focus may vary significantly in size.
4035
-->
41-
4236
应用开发者专注于应用的某一部分。他们工作范围的大小有明显的差异。

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ tags:
1111
---
1212

1313
<!--
14-
---
1514
title: Applications
1615
id: applications
1716
date: 2019-05-12
@@ -21,10 +20,8 @@ short_description: >
2120
aka:
2221
tags:
2322
- fundamental
24-
---
2523
-->
2624

27-
2825
<!--
2926
The layer where various containerized applications run.
3027
-->

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ aka:
1010
tags:
1111
- community
1212
---
13-
1413
<!--
15-
---
1614
title: Approver
1715
id: approver
1816
date: 2018-04-12
@@ -23,20 +21,18 @@ short_description: >
2321
aka:
2422
tags:
2523
- community
26-
---
2724
-->
2825

2926
<!--
3027
A person who can review and approve Kubernetes code contributions.
3128
-->
32-
可以审核并批准 Kubernetes 代码贡献的人。
29+
能够审核并批准 Kubernetes 代码贡献的人。
3330

3431
<!--more-->
3532

3633
<!--
3734
While code review is focused on code quality and correctness, approval is focused on the holistic acceptance of a contribution. Holistic acceptance includes backwards/forwards compatibility, adhering to API and flag conventions, subtle performance and correctness issues, interactions with other parts of the system, and others. Approver status is scoped to a part of the codebase. Approvers were previously referred to as maintainers.
3835
-->
39-
4036
代码审核的重点是代码质量和正确性,而批准的重点是对贡献的整体接受。
4137
整体接受包括向后/向前兼容性、遵守 API 和参数约定、细微的性能和正确性问题、与系统其他部分的交互等。
4238
批准者状态的作用域是代码库的一部分。审批者以前被称为维护者。

0 commit comments

Comments
 (0)