Pods
In this section, we will take a look at PODS.
- POD introduction
- How to deploy pod?
Kubernetes doesn’t deploy containers directly on the worker node.

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

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

Multi-Container PODs
Docker Example (Docker Link)

How to deploy pods?
Lets now take a look to create a nginx pod using kubectl
.
- To deploy a docker container by creating a POD.
$ kubectl run nginx --image nginx
- To get the list of pods

K8s Reference Docs:
- https://kubernetes.io/docs/concepts/workloads/pods/pod/
- https://kubernetes.io/docs/concepts/workloads/pods/pod-overview/
- https://kubernetes.io/docs/tutorials/kubernetes-basics/explore/explore-intro/