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

PODs in Kubernetes

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!

Atomic unit of work in Kubernetes

They are the application/service

Can contain multiple containers

Pods cannot be created/destroyed, only instantiated

Pod lifecycle -> pending, ready, failed/succeeded

Pods are instantiated by Kubelet in the worker nodes

Pods can be scaled up/down

Pods have unique IPs

Containers within a Pod share namespace resources like network, mount, IPC, etc

Therefore containers within a Pod can share files and communicate with each other via localhost

Pods communicate with each other (with other pods) using the Pod network

There is a load balancer which routes traffic coming from outside to appropriate pod (with the help of kubeproxy)