Fundamental Of Kubernetes Object Pod:
A Pod (as in a pod of whales or pea pod) is a group of one or more containers, with shared storage and
network resources, and a specification for how to run the containers.
1.
When a Pod creation happen then master will automatically decide that on which node it should create until
you have not specified the node.
2.
Pods remain on node until is not terminated or until node failure not happen , until pod is not deleted, lack
of required resource of pod creation
3.
4. If node die then after a timeout period pod will also get delete
5. If a pod get deleted then same pod (id) cannot restart always start a new pod with different unique ID
6. Volume inside pod also die if the pods die
7. Controller can manage pod autoscaling, self-healing etc