Skip to content

Commit ff44a14

Browse files
authored
Merge pull request #24569 from climent/patch-2
Update pod-lifecycle.md
2 parents 54d00b7 + e6c7f7e commit ff44a14

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

content/en/docs/concepts/workloads/pods/pod-lifecycle.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ have a given `phase` value.
7777

7878
Here are the possible values for `phase`:
7979

80-
Value | Description
81-
:-----|:-----------
82-
`Pending` | The Pod has been accepted by the Kubernetes cluster, but one or more of the containers has not been set up and made ready to run. This includes time a Pod spends waiting to be scheduled as well as the time spent downloading container images over the network.
83-
`Running` | The Pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting.
80+
Value | Description
81+
:-----------|:-----------
82+
`Pending` | The Pod has been accepted by the Kubernetes cluster, but one or more of the containers has not been set up and made ready to run. This includes time a Pod spends waiting to be scheduled as well as the time spent downloading container images over the network.
83+
`Running` | The Pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting.
8484
`Succeeded` | All containers in the Pod have terminated in success, and will not be restarted.
85-
`Failed` | All containers in the Pod have terminated, and at least one container has terminated in failure. That is, the container either exited with non-zero status or was terminated by the system.
86-
`Unknown` | For some reason the state of the Pod could not be obtained. This phase typically occurs due to an error in communicating with the node where the Pod should be running.
85+
`Failed` | All containers in the Pod have terminated, and at least one container has terminated in failure. That is, the container either exited with non-zero status or was terminated by the system.
86+
`Unknown` | For some reason the state of the Pod could not be obtained. This phase typically occurs due to an error in communicating with the node where the Pod should be running.
8787

8888
If a node dies or is disconnected from the rest of the cluster, Kubernetes
8989
applies a policy for setting the `phase` of all Pods on the lost node to Failed.

0 commit comments

Comments
 (0)