What is POD:
POD is the smallest execution unit in kubernetes.
POD can have one or more container applications.
POD is ephemeral b nature.
IF a pod fails, kubernetes can automatically create new pod to
continue operations.every container in pod will have same address but different port numbers.
LifeCycle of POD: Pending, Running, Succeeded, Failed, Unknown
No same POD can be created again, similar pod can be created but not same.
Top comments (0)