This example assumes you have previously completed the following examples:
- Create an Azure Resource Group
- Create an App Service plan
- Deploy a web application on a managed Tomcat
To scale the App Service Plan use the following command line:
az appservice plan update \
--verbose \
--name $APPSERVICE_PLAN \
--resource-group $RESOURCE_GROUP \
--number-of-workers 2
You can adjust the number to your desired number of workers.
Do NOT forget to remove resources once you are done running the example.