Fix misspell of type of Pod condition at init container explanation (zh) (#17416)

In explanation of init container, doc says 'Initializing' pod
condition. However according to doc of pod condition[1], it should be
'Initialized'.

This commit fixes this misspell of Chinese doc.
This misspell is verified by PR #17329 which fixes English doc.

[1]
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions
pull/17429/head
vanou 2019-11-05 11:24:38 +09:00 committed by Kubernetes Prow Robot
parent 31ff8d011b
commit ec7efbc544
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ myapp-pod 1/1 Running 0 9m
在所有的 Init 容器没有成功之前Pod 将不会变成 `Ready` 状态。
Init 容器的端口将不会在 Service 中进行聚集。
正在初始化中的 Pod 处于 `Pending` 状态,但应该会将条件 `Initializing` 设置为 true。
正在初始化中的 Pod 处于 `Pending` 状态,但应该会将条件 `Initialized` 设置为 true。
如果 Pod [重启](#pod-restart-reasons),所有 Init 容器必须重新执行。