List of all possible status / reasons in Kubernetes

I have been able to document a few extras:

Terminating The pod is attempting to terminate; if a pod is stuck in this state something has happened that has prevented the process from succeeding (this could be a zombie process or, sometimes, problems with a mounted volume)

ContainerCreating Something is wrong with the configuration for a container required by this pod; may be a miss-typed container name or some network configuration issues

Error Kind of a catch-all; may not be particularly useful. If you see this a lot, it might be a good idea to check out this doc


A phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle.

The phase is not intended to be a comprehensive rollup of observations of Container or Pod state, nor is it intended to be a comprehensive state machine.

Here are the possible values for phase:

Pending The Pod has been accepted by the Kubernetes system, but one or more of the Container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while.

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.

Succeeded All Containers in the Pod have terminated in success, and will not be restarted.

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.

Unknown For some reason the state of the Pod could not be obtained, typically due to an error in communicating with the host of the Pod.

If you are interested in detailed arrays with Pod conditions, I suggest looking at Pod Lifecycle from Kubernetes documentation and inspect source code for remaining information.


If you need to have a complete list of events in Kubernetes, you should take a look directly to the Kubernetes project on github.

Here the link to the event.go file.

Tags:

Kubernetes