Debug School

Yogeshwari
Yogeshwari

Posted on

Assignment #2 What is Pod?

Pod is the atomic unit of scheduling. We can have one or more containers in the pod. It is the most basic unit of work. They are ephemeral meaning they can't be redeployed. Below is the lifecycle of a Pod:

  1. Pending
  2. Running
  3. Succeeded \ Failed

Kubernetes job is to keep the pods in running state with the desired state.

Top comments (0)