The Azure Quickstart templates are currently available in English
This template allows you to deploy an autoscale policy for Virtual Machine ScaleSet resource.
Diese ARM-Vorlage (Azure-Ressourcen-Manager) wurde von einem Mitglied der Community und nicht von Microsoft erstellt. Jede ARM-Vorlage wird für Sie von dessen Besitzer, nicht von Microsoft, unter einem Lizenzvertrag lizenziert. Microsoft übernimmt keine Zuständigkeiten für ARM-Vorlagen, die von Mitgliedern der Community bereitgestellt und lizenziert werden, und auch nicht für deren Sicherheit, Kompatibilität oder Leistung. ARM-Vorlagen aus der Community werden von keinem Microsoft-Supportprogramm oder -Dienst unterstützt und wie vorhanden ohne jegliche Gewährleistung zur Verfügung gestellt.
Parameter
Parametername | Beschreibung |
---|---|
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. |
Verwenden der Vorlage
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 deploymentAzure PowerShell installieren und konfigurieren
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/monitor-autoscale-vmss-simplemetricbased/azuredeploy.json
Befehlszeile
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 deploymentInstallieren und Konfigurieren der plattformübergreifenden Azure-Befehlszeilenschnittstelle
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