Jump to content

Kubernetes: Difference between revisions

9 bytes removed ,  15 January 2022
Line 6: Line 6:
===Background===
===Background===
Kubernetes runs applications across nodes which are physical or virtual machines.<br>
Kubernetes runs applications across nodes which are physical or virtual machines.<br>
Each node contains a kubelet process, a container runtime (typically containerd), and possibly one or more pods.<br>
Each node contains a kubelet process, a container runtime (typically containerd), and any running pods.<br>
Pods contain resources needed to host your application including volumes and containers.<br>
Pods contain resources needed to host your application including volumes and containers.<br>
Typically you will want one container per pod since deployments scale by creating multiple pods.
Typically you will want one container per pod since deployments scale by creating multiple pods.