Finally clarified with PODs in Kubernetes
PODs in Kubernetes What is POD? How PODs are deployed in Kubernetes? What instances we will use in multiple containers in single POD? How does POD networking works? Inter-POD networking and Intra-POD networking? POD Life Cycle. 1.What is POD? Atomic unit of scheduling in Kubernetes world. So, when we get into the watch vitalization world the atomic unit of scheduling is virtual machine. If you want to deploy any app then you need to put your code and related config in so the virtual machine and then deployed. Next, when it comes to the containerization world generally we use containers and in the same way we use POD in Kubernetes. So, at a high-level POD is a basic unit of scheduling in Kubernetes. ...