From f116c6877ddbd8b36eba34c2e8f2895ba4ab585a Mon Sep 17 00:00:00 2001 From: McCoyAle Date: Sun, 17 Feb 2019 21:50:48 -0500 Subject: [PATCH] Add Pod Lifecycle to glossary (#12645) * Add Pod Lifecycle to glossary * Update pod-lifecycle.md * Update pod-lifecycle.md --- .../en/docs/reference/glossary/pod-lifecycle.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/en/docs/reference/glossary/pod-lifecycle.md diff --git a/content/en/docs/reference/glossary/pod-lifecycle.md b/content/en/docs/reference/glossary/pod-lifecycle.md new file mode 100644 index 0000000000..ec496de440 --- /dev/null +++ b/content/en/docs/reference/glossary/pod-lifecycle.md @@ -0,0 +1,16 @@ +--- +title: Pod Lifecycle +id: pod-lifecycle +date: 2019-02-17 +full-link: /docs/concepts/workloads/pods/pod-lifecycle/ +related: + - pod + - container +tags: + - fundamental +short-description: > + A high-level summary of what phase the Pod is in within its lifecyle. + +--- + +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](https://kubernetes.io/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.