How Do We Deploy Pods?
Learn how to deploy Pods.
We'll cover the following...
static Pods vs. controllers
There are two ways to deploy Pods:
Directly via a Pod manifest (rare)
Indirectly via a workload resource and controller (most common)
Deploying directly from a Pod manifest creates a static Pod that cannot self-heal, scale, or perform rolling updates. This is because they’re only managed by the kubelet
on the node they’re running ...