The Azure Quickstart templates are currently available in English
This template allows you to deploy an autoscale policy for Virtual Machine ScaleSet resource.
Este modelo do ARM (Azure Resource Manager) foi criado por um membro da comunidade, e não pela Microsoft. Cada modelo do ARM é licenciado para você de acordo com o contrato de licença de seu proprietário, e não da Microsoft. A Microsoft não é responsável por modelos do ARM fornecidos e licenciado por membros da comunidade e não avalia sua segurança, compatibilidade ou desempenho. Modelos do ARM da comunidade não têm suporte de nenhum programa ou serviço de suporte da Microsoft e são disponibilizados DA FORMA COMO ESTÃO, sem nenhum tipo de garantia.
Parâmetros
Nome do parâmetro | Descrição |
---|---|
vmSku | Size of VMs in the VM Scale Set. |
windowsOSVersion | The Windows version for the VM. |
vmssName | String used as a base for naming resources. Must be 3-61 characters in length and globally unique across Azure. |
instanceCount | Number of VM instances (1000 or less). |
adminUsername | Admin username. |
adminPassword | Admin password. |
minimumCapacity | The minimum capacity. Autoscale engine will ensure the instance count is at least this value. |
maximumCapacity | The maximum capacity. Autoscale engine will ensure the instance count is not greater than this value. |
defaultCapacity | The default capacity. Autoscale engine will preventively set the instance count to be this value if it can not find any metric data. |
metricName | The metric name. |
metricThresholdToScaleOut | The metric upper threshold. If the metric value is above this threshold then autoscale engine will initiate scale out action. |
metricThresholdToScaleIn | The metric lower threshold. If the metric value is below this threshold then autoscale engine will initiate scale in action. |
changePercentScaleOut | The percentage to increase the instance count when autoscale engine is initiating scale out action. |
changePercentScaleIn | The percentage to decrease the instance count when autoscale engine is initiating scale in action. |
autoscaleEnabled | A boolean to indicate whether the autoscale policy is enabled or disabled. |
Usar o modelo
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstale e configure o PowerShell do Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json
Linha de comando
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalar e configurar a Interface de Linha de Comando de Plataforma Cruzada do Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json