skip to content
Alvin Lucillo

Showing container app scaling properties

/ 1 min read

To see the container app’s scaling configuration, use the command below that uses this query: properties.template.scale.

az containerapp show \
    --name $CONTAINER_APP_NAME \
    --resource-group $RESOURCE_GROUP \
    --query "properties.template.scale"
The behavior of this command has been altered by the following extension: containerapp
{
  "cooldownPeriod": 300,
  "maxReplicas": 10,
  "minReplicas": 0,
  "pollingInterval": 30,
  "rules": [
    {
      "http": {
        "auth": [],
        "metadata": {
          "concurrentRequests": "10"
        }
      },
      "name": "http-scaling"
    }
  ]
}