Deployments
Learn about Deployments in Kubernetes.
We'll cover the following...
Even though Kubernetes works with Pods, you’ll almost always deploy them via high-level controllers such as Deployments, StatefulSets, and DaemonSets. These all run on the control plane and operate as background watch loops, reconciling the observed state with the desired state.
Deployments add self-healing, scaling, rolling updates, and versioned rollbacks to stateless apps. ...