Skip to content

Commit d223358

Browse files
authored
Merge pull request #36434 from ydFu/update-reference-glossary-6
[zh] Update reference\glossary (6)
2 parents a5e96bf + 2973217 commit d223358

File tree

4 files changed

+9
-23
lines changed

4 files changed

+9
-23
lines changed

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ tags:
1111
- community
1212
- user-type
1313
---
14-
1514
<!--
16-
---
1715
title: Code Contributor
1816
id: code-contributor
1917
date: 2018-04-12
@@ -25,19 +23,16 @@ aka:
2523
tags:
2624
- community
2725
- user-type
28-
---
2926
-->
3027

3128
<!--
3229
A person who develops and contributes code to the Kubernetes open source codebase.
3330
-->
34-
3531
为 Kubernetes 开源代码库开发并贡献代码的人。
3632

3733
<!--more-->
3834

3935
<!--
4036
They are also an active {{< glossary_tooltip text="community member" term_id="member" >}} who participates in one or more {{< glossary_tooltip text="Special Interest Groups (SIGs)" term_id="sig" >}}.
4137
-->
42-
43-
代码贡献者也是加入一个或多个 {{< glossary_tooltip text="特别兴趣小组 (SIGs)" term_id="sig" >}} 的活跃的 {{< glossary_tooltip text="社区成员" term_id="member" >}}。
38+
他们也是加入一个或多个{{< glossary_tooltip text="特别兴趣小组 (Special Interest Groups;SIGs)" term_id="sig" >}}的活跃{{< glossary_tooltip text="成员" term_id="member" >}}。

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

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ aka:
1010
tags:
1111
- core-object
1212
---
13-
1413
<!--
15-
---
1614
title: ConfigMap
1715
id: configmap
1816
date: 2018-04-12
@@ -23,7 +21,6 @@ short_description: >
2321
aka:
2422
tags:
2523
- core-object
26-
---
2724
-->
2825

2926
<!--
@@ -32,13 +29,11 @@ tags:
3229
environment variables, command-line arguments, or as configuration files in a
3330
{{< glossary_tooltip text="volume" term_id="volume" >}}.
3431
-->
35-
3632
ConfigMap 是一种 API 对象,用来将非机密性的数据保存到键值对中。使用时, {{< glossary_tooltip text="Pods" term_id="pod" >}} 可以将其用作环境变量、命令行参数或者存储卷中的配置文件。
3733

3834
<!--more-->
3935

4036
<!--
4137
A ConfigMap allows you to decouple environment-specific configuration from your {{< glossary_tooltip text="container images" term_id="image" >}}, so that your applications are easily portable.
4238
-->
43-
4439
ConfigMap 将你的环境配置信息和 {{< glossary_tooltip text="容器镜像" term_id="image" >}} 解耦,便于应用配置的修改。

content/zh-cn/docs/reference/glossary/container-env-variables.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ aka:
1010
tags:
1111
- fundamental
1212
---
13-
1413
<!--
15-
---
1614
title: Container Environment Variables
1715
id: container-env-variables
1816
date: 2018-04-12
@@ -23,18 +21,16 @@ short_description: >
2321
aka:
2422
tags:
2523
- fundamental
26-
---
2724
-->
2825

2926
<!--
3027
Container environment variables are name=value pairs that provide useful information into containers running in a {{< glossary_tooltip text="pod" term_id="pod" >}}
3128
-->
32-
33-
容器环境变量提供了 name=value 形式的、在 {{< glossary_tooltip text="pod" term_id="pod" >}} 中运行的容器所必须的一些重要信息。
29+
容器环境变量提供了 name=value 形式的、在 {{< glossary_tooltip text="Pod" term_id="pod" >}} 中运行的容器所必须的一些重要信息。
3430

3531
<!--more-->
32+
3633
<!--
3734
Container environment variables provide information that is required by the running containerized applications along with information about important resources to the {{< glossary_tooltip text="containers" term_id="container" >}}. For example, file system details, information about the container itself, and other cluster resources such as service endpoints.
3835
-->
39-
40-
容器环境变量为运行中的容器化应用提供必要的信息,同时还提供与 {{< glossary_tooltip text="容器" term_id="container" >}} 重要资源相关的其他信息,例如:文件系统信息、容器自身的信息以及其他像服务端点(Service endpoints)这样的集群资源信息。
36+
容器环境变量为运行中的容器化应用提供必要的信息,同时还提供与{{< glossary_tooltip text="容器" term_id="container" >}}重要资源相关的其他信息,例如:文件系统信息、容器自身的信息以及其他像服务端点(Service endpoints)这样的集群资源信息。

content/zh-cn/docs/reference/glossary/container-lifecycle-hooks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ tags:
1111
- extension
1212
---
1313
<!--
14-
---
1514
title: Container Lifecycle Hooks
1615
id: container-lifecycle-hooks
1716
date: 2018-10-08
@@ -22,17 +21,18 @@ short_description: >
2221
aka:
2322
tags:
2423
- extension
25-
---
2624
-->
2725

28-
生命周期钩子暴露{{< glossary_tooltip text="容器" term_id="container" >}}管理生命周期中的事件,允许用户在事件发生时运行代码。
2926
<!--
30-
The lifecycle hooks expose events in the {{< glossary_tooltip text="Container" term_id="container" >}}container management lifecycle and let the user run code when the events occur.
27+
The lifecycle hooks expose events in the {{< glossary_tooltip text="Container" term_id="container" >}} management lifecycle and let the user run code when the events occur.
3128
-->
29+
生命周期钩子(Lifecycle Hooks)暴露{{< glossary_tooltip text="容器" term_id="container" >}}管理生命周期中的事件,允许用户在事件发生时运行代码。
3230

3331
<!--more-->
3432

35-
针对容器暴露了两个钩子:PostStart 在容器创建之后立即执行,PreStop 在容器停止之前立即阻塞并被调用。
3633
<!--
3734
Two hooks are exposed to Containers: PostStart which executes immediately after a container is created and PreStop which is blocking and is called immediately before a container is terminated.
3835
-->
36+
针对容器暴露了两个钩子:
37+
PostStart 在容器创建之后立即执行,
38+
PreStop 在容器停止之前立即阻塞并被调用。

0 commit comments

Comments
 (0)