Debug School

Sarmila P
Sarmila P

Posted on

What is Pod - Sarmila

  • Pod is an atomic unit of scheduling work
  • One pod can have multiple containers running
  • Pod will run as long as the containers are running (lifecycle includes pending, running, succeeded/Failed)
  • Best approach for pods is to have one container per pod
  • When multiple containers are running in the same file, resources will be shared
  • Every container inside a pod will be having the same ip address but port number will be unique
  • No pod will be ever redeployed
  • Containers inside pods can communicate within the pods using localhost

Top comments (0)