Beginning For Pod

What is Pod ?

Pod is atomic unit of scheduling in the Kubernetes, It contains one or more containers.

Pods | Kubernetes Pods |- Cloud Training Program

Types Of Pods :

There are two methods in pods :

  1. loose coupling – Pod with one container

2. tight coupling – pod with multiple containers

What pod contains ?

Inside a Pod we can have one or more containers .

Understanding Kubernetes: Part 1-Pods – Goglides Tech blog

Life cycle of Pod :

There are three stages in life cycle of pod:

1.pending – when the pod is added newly

2.running – when the container execute without issues

3.succeeded/failed – when the container finishes its execution

6 Managing the lifecycle of the Pod's containers - Kubernetes in Action,  Second Edition MEAP V07