File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
content/zh-cn/docs/concepts/workloads/pods Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -72,11 +72,11 @@ The status of the init containers is returned in `.status.initContainerStatuses`
72
72
field as an array of the container statuses (similar to the `.status.containerStatuses`
73
73
field).
74
74
-->
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 )
76
76
中添加 ` initContainers ` 字段,
77
77
该字段以 [ Container] (/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#container-v1-core)
78
78
类型对象数组的形式组织,和应用的 ` 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 ) 章节了解详情。
80
80
81
81
Init 容器的状态在 ` status.initContainerStatuses ` 字段中以容器状态数组的格式返回
82
82
(类似 ` status.containerStatuses ` 字段)。
@@ -215,7 +215,7 @@ kind: Pod
215
215
metadata :
216
216
name : myapp-pod
217
217
labels :
218
- app : myapp
218
+ app.kubernetes.io/name : MyApp
219
219
spec :
220
220
containers :
221
221
- name : myapp-container
@@ -284,7 +284,7 @@ The output is similar to this:
284
284
Name: myapp-pod
285
285
Namespace: default
286
286
[...]
287
- Labels: app=myapp
287
+ Labels: app.kubernetes.io/name=MyApp
288
288
Status: Pending
289
289
[...]
290
290
Init Containers:
@@ -545,7 +545,7 @@ Pod 重启会导致 Init 容器重新执行,主要有如下几个原因:
545
545
* Pod 的基础设施容器 (译者注:如 ` pause ` 容器) 被重启。这种情况不多见,
546
546
必须由具备 root 权限访问节点的人员来完成。
547
547
548
- * 当 ` restartPolicy ` 设置为 " ` Always ` " ,Pod 中所有容器会终止而强制重启。
548
+ * 当 ` restartPolicy ` 设置为 ` Always ` ,Pod 中所有容器会终止而强制重启。
549
549
由于垃圾收集机制的原因,Init 容器的完成记录将会丢失。
550
550
551
551
<!--
You can’t perform that action at this time.
0 commit comments