Skip to content

Commit 23c8345

Browse files
authored
Merge pull request #35467 from windsonsea/initcon
[zh-cn] resync /concepts/workloads/pods/init-containers.md
2 parents b62c6de + 37b1950 commit 23c8345

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/zh-cn/docs/concepts/workloads/pods/init-containers.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ The status of the init containers is returned in `.status.initContainerStatuses`
7272
field as an array of the container statuses (similar to the `.status.containerStatuses`
7373
field).
7474
-->
75-
为 Pod 设置 Init 容器需要在 [Pod 规约](/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodSpec)
75+
为 Pod 设置 Init 容器需要在 [Pod 规约](/zh-cn/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodSpec)
7676
中添加 `initContainers` 字段,
7777
该字段以 [Container](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#container-v1-core)
7878
类型对象数组的形式组织,和应用的 `containers` 数组同级相邻。
79-
参阅 API 参考的[容器](/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container)章节了解详情。
79+
参阅 API 参考的[容器](/zh-cn/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container)章节了解详情。
8080

8181
Init 容器的状态在 `status.initContainerStatuses` 字段中以容器状态数组的格式返回
8282
(类似 `status.containerStatuses` 字段)。
@@ -215,7 +215,7 @@ kind: Pod
215215
metadata:
216216
name: myapp-pod
217217
labels:
218-
app: myapp
218+
app.kubernetes.io/name: MyApp
219219
spec:
220220
containers:
221221
- name: myapp-container
@@ -284,7 +284,7 @@ The output is similar to this:
284284
Name: myapp-pod
285285
Namespace: default
286286
[...]
287-
Labels: app=myapp
287+
Labels: app.kubernetes.io/name=MyApp
288288
Status: Pending
289289
[...]
290290
Init Containers:
@@ -545,7 +545,7 @@ Pod 重启会导致 Init 容器重新执行,主要有如下几个原因:
545545
* Pod 的基础设施容器 (译者注:如 `pause` 容器) 被重启。这种情况不多见,
546546
必须由具备 root 权限访问节点的人员来完成。
547547

548-
*`restartPolicy` 设置为 "`Always`",Pod 中所有容器会终止而强制重启。
548+
*`restartPolicy` 设置为 `Always`,Pod 中所有容器会终止而强制重启。
549549
由于垃圾收集机制的原因,Init 容器的完成记录将会丢失。
550550

551551
<!--

0 commit comments

Comments
 (0)