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

What is Kubernetes pod?

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!

POD is logical entity or a place holder, which represents a single instance of kubernetes cluster. POD can house one or more containers with shared NW, Storage resources.

PODs can not be created. It can only be instantiated with the help of node agent kubelet.

kubectl get pods >> This command will list all the available PODs in the default namespace

kubectl get pods –all-namespaces -o wide >> This command will list all the PODs from all the namespaces with host info

kubectl get pod -n <your namespace> -o wide >> This command will only list the PODs running in your namespace.