Scaling Up/Down Our Application
Explore scaling Kubernetes applications by adjusting replica counts in deployment manifests. Learn to increase or decrease pods smoothly while understanding container scheduling in multi-node clusters to maintain application availability.
We'll cover the following...
We'll cover the following...
Scaling Up Our Application
Another cool thing that deployments can do is scale up and down the number of replicas we have running. Right now, we are running a single container for our application. Changing that is just a matter of updating our manifest file with our new desired number of replica and sending that to Kubernetes:
The manifest is exactly the same except for the replicas field that ...