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

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

This commit fixes this misspell.

[1]
https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-conditions
This commit is contained in:
vanou
2019-11-02 00:07:24 +09:00
committed by Kubernetes Prow Robot
parent 0019c593dc
commit 14f0fdaebe
@@ -277,7 +277,7 @@ if the Pod `restartPolicy` is set to Always, the init containers use
A Pod cannot be `Ready` until all init containers have succeeded. The ports on an
init container are not aggregated under a Service. A Pod that is initializing
is in the `Pending` state but should have a condition `Initializing` set to true.
is in the `Pending` state but should have a condition `Initialized` set to true.
If the Pod [restarts](#pod-restart-reasons), or is restarted, all init containers
must execute again.