From 14f0fdaebe6e688c1a2d70d8fefeae005c0b6ac1 Mon Sep 17 00:00:00 2001 From: vanou <8667089+vanou@users.noreply.github.com> Date: Sat, 2 Nov 2019 00:07:24 +0900 Subject: [PATCH] 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 --- content/en/docs/concepts/workloads/pods/init-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/workloads/pods/init-containers.md b/content/en/docs/concepts/workloads/pods/init-containers.md index 309a8bfad5..dcea5c17cf 100644 --- a/content/en/docs/concepts/workloads/pods/init-containers.md +++ b/content/en/docs/concepts/workloads/pods/init-containers.md @@ -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.