k8s.github.io

Pods

In this section, we will take a look at PODS.

Kubernetes doesn’t deploy containers directly on the worker node.

pod

Here is a single node kubernetes cluster with single instance of your application running in a single docker container encapsulated in the pod.

pod1

Pod will have a one-to-one relationship with containers running your application.

pod2

Multi-Container PODs

pod4

How to deploy pods?

Lets now take a look to create a nginx pod using kubectl.

kubectl

K8s Reference Docs: