...

/

Introduction

Introduction

An overview of pods.

Introduction to pods

Pods are where our applications run. It’s the basic building block and the atomic unit of scheduling in Kubernetes. Each pod will include one or more containers and every time we run a container in Kubernetes, it will be inside a pod.

Pods are the atomic unit of scheduling

It is important to understand that a pod is the atomic unit of scheduling in Kubernetes. So if we want to run, say, 10 ...