What is POD :
- POD's are managed by kubernete
- All the components installed while creating Master or worker creates the static nodes for each component
- POD can have multiple containers
- There can be multiple multiple POD's in one worker
- Good practice is to have one container in one POD
- We cannot start the POD's
- POD's cannot be created it can be only initiated buy kubelet
- Each POD have it own .yaml file
- Desire to the kubernetes is created at POD level
- If multiple container in one POD each container should have different port adders
- Containers inside the POD's will communicate with the POD local IP
- We can have Main containers and supporting containers in side the POD
Top comments (0)