Debug School

Ankit Aggarwal
Ankit Aggarwal

Posted on

What is POD

  1. Pod is not a physical entity. It just like isolate containers.
  2. Pod is like handlers for resources like CPU, RAM, Container etc
  3. Pod is wrapper component where container resides
  4. Pod can never be restarted or start/stop.
  5. Pod can always be instantiated
  6. If container inside the pod stop/failed Pod will be not be available
  7. Pod has it's own network and uses POD network to communicate to each other.
  8. We can have multiple containers inside POD and all will have same ip address
  9. Life Cycle of POD is pending, running , success/failed
  10. Anything shared at POD level, containers can access it
  11. Pod is considered as atomic unit of scheduling
  12. It is the duty of kubernetes to keep running POD

Top comments (0)