Skip to content

Commit 731cb67

Browse files
authored
Merge pull request #46745 from network-charles/network-charles-patch-5
Clarify the Pod Phase "Failed" Explanation
2 parents 71c870d + 2925e8b commit 731cb67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Value | Description
8181
`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.
8282
`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.
8383
`Succeeded` | All containers in the Pod have terminated in success, and will not be restarted.
84-
`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.
84+
`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, and is not set for automatic restarting.
8585
`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.
8686

8787
{{< note >}}
@@ -671,4 +671,4 @@ for more details.
671671

672672
* For detailed information about Pod and container status in the API, see
673673
the API reference documentation covering
674-
[`status`](/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodStatus) for Pod.
674+
[`status`](/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodStatus) for Pod.

0 commit comments

Comments
 (0)