0
0
Kubernetesdevops~5 mins

Pod lifecycle states in Kubernetes - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a Pod in Kubernetes?
A Pod is the smallest unit in Kubernetes that can run one or more containers together on the same host. It shares storage, network, and specifications for how to run the containers.
Click to reveal answer
beginner
Name the main lifecycle states of a Kubernetes Pod.
The main lifecycle states are: Pending, Running, Succeeded, Failed, and Unknown.
Click to reveal answer
beginner
What does the 'Pending' state mean for a Pod?
Pending means the Pod has been accepted by the Kubernetes system but is waiting to be scheduled onto a node or waiting for container images to be downloaded.
Click to reveal answer
beginner
Explain the 'Running' state of a Pod.
Running means the Pod has been scheduled on a node and all containers inside the Pod have been started successfully and are running.
Click to reveal answer
intermediate
What is the difference between 'Succeeded' and 'Failed' Pod states?
Succeeded means all containers in the Pod have finished successfully and will not restart. Failed means at least one container has terminated with an error or failure.
Click to reveal answer
Which Pod lifecycle state indicates the Pod is waiting to be scheduled or images to download?
APending
BRunning
CSucceeded
DFailed
What does the 'Running' state of a Pod mean?
APod is deleted
BPod containers are running on a node
CPod failed to start
DPod is waiting for scheduling
If a Pod has completed all its tasks successfully, what is its state?
AFailed
BPending
CSucceeded
DUnknown
What does the 'Failed' state indicate for a Pod?
APod is deleted
BPod is running normally
CPod is waiting for resources
DPod containers terminated with errors
Which Pod state means Kubernetes cannot determine the Pod status?
AUnknown
BRunning
CPending
DSucceeded
Describe the lifecycle states of a Kubernetes Pod and what each state means.
Think about the Pod's journey from creation to completion or failure.
You got /5 concepts.
    Explain how Kubernetes handles a Pod that fails to start its containers.
    Consider what happens when something goes wrong inside the Pod.
    You got /3 concepts.