Process Flow - Scaling Deployments
Start: Deployment with 1 replica
Check desired replicas
kubectl scale command issued
Kubernetes updates Deployment spec
ReplicaSet adjusts pods count
New pods created or removed
Deployment reaches desired replicas
End
This flow shows how Kubernetes scales a Deployment by changing the number of pod replicas to match the desired count.