.NET Tutorial - Deploy a microservice to Azure

Scale your service

A benefit of using Kubernetes is that you can easily scale up a deployment to multiple instances to handle additional load. Currently, there's only a single instance, so let's scale to two instances.

Run the following command to scale your service up to two instances:

Terminal
kubectl scale --replicas=2 deployment/mymicroservice
Continue