πŸš€ DevOps Certified Professional
πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 | 🀝 +1 (469) 756-6329 πŸ” Contact@DevOpsSchool.com

What is Pod in kubernetes. Exaplin in 15 points with image as an example

DevOps

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

  1. Pod is the smallest execution unit in kubernetes
  2. Pod is not a physical entity. it is a logical entity.
  3. Pod is a group of one or more container
  4. Pod will contain one main container and other sidecar containers
  5. Storage and network will be shared among different containers inside a pod.
  6. pod lifecycle is pending, running, succeeded or failed.
  7. It will start in pending phase
  8. If any primary containers starts OK, state will change to running.
  9. If any containers terminated with failure state will changed to failed.
  10. If a node dies, the Pods scheduled to that node are scheduled for deletion after a timeout period.
  11. an ip will be assigned to each node.
  12. pods can communicate each other via pod network
  13. recommended model is one container per pod