From 8f8bb5c2bfad2d1c973792b98f5d5d466aabe5a0 Mon Sep 17 00:00:00 2001 From: Gerasimos Dimitriadis Date: Thu, 16 Jan 2020 12:20:22 +0200 Subject: [PATCH] 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 --- content/en/docs/reference/glossary/pod-lifecycle.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/en/docs/reference/glossary/pod-lifecycle.md b/content/en/docs/reference/glossary/pod-lifecycle.md index 554a20ca3c..5127f39b0d 100644 --- a/content/en/docs/reference/glossary/pod-lifecycle.md +++ b/content/en/docs/reference/glossary/pod-lifecycle.md @@ -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. -The [Pod Lifecycle](/docs/concepts/workloads/pods/pod-lifecycle/) is a high level summary of where a Pod is in its lifecyle. A Pod’s `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.