Selfnote on PODS

Types of pod’s??

1.one-container-per-Pod

2. Pods that runs multiple container that need to work together.

What is pod??

Pod is nothing but similar to a group of containers with shared namespaces and shared filesystem volumes and no pod’s are re-deployed

what pod contain’s????

1.A unique IP address (which allows them to communicate with each other)

2.persistent storage volumes

3.configuration information that determine how a container should run.

Life cycle of pod???

1.Pending : The Pod has been accepted by the Kubernetes cluster, but one or more of the containers has not been set up and made ready to run

2.Running : The Pod has been bound to a node, and all of the containers have been created.

3.Succeeded : All containers in the Pod have terminated in success, and will not be restarted.

4.Failed : ll containers in the Pod have terminated, and at least one container has terminated in failure

5.Unknown : For some reason the state of the Pod could not be obtained.