Fix pod status phases + more (#18537)

* Fix pod status phases + more

A number of improvements introduced in the glossary entry for Pod Lifecycle
* Completed / CrashLoopBackOff were removed from the list of pod status phases
* The link to PodStatus in the generated kubernetes api was parametrized regarding version
* Minor editorial changes

* Rework Pod Lifecycle entry to better describe term

The term definition was reworked after the review comments from
kbhawkey
pull/18725/head
Gerasimos Dimitriadis 2020-01-16 12:20:22 +02:00 committed by Kubernetes Prow Robot
parent 511ad46af8
commit 8f8bb5c2bf
1 changed files with 3 additions and 3 deletions

View File

@ -9,11 +9,11 @@ related:
tags:
- fundamental
short_description: >
A high-level summary of what phase the Pod is in within its lifecyle.
The sequence of states through which a Pod passes during its lifetime.
---
A high-level summary of what phase the Pod is in within its lifecyle.
The sequence of states through which a Pod passes during its lifetime.
<!--more-->
The [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/) is a high level summary of where a Pod is in its lifecyle. A Pods `status` field is a [PodStatus](/docs/reference/generated/kubernetes-api/v1.13/#podstatus-v1-core) object, which has a `phase` field that displays one of the following phases: Running, Pending, Succeeded, Failed, Unknown, Completed, or CrashLoopBackOff.
The [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/) is defined by the states or phases of a Pod. There are five possible Pod phases: Pending, Running, Succeeded, Failed, and Unknown. A high-level description of the Pod state is summarized in the [PodStatus](/docs/reference/generated/kubernetes-api/{{< param "version" >}}/#podstatus-v1-core) `phase` field.