The Azure Quickstart templates are currently available in English
Using this template, you can create your own load test rig on Azure IaaS virtual machines in order to test applications that do not have a public end-point. The load generating agent machines will be created in the specified VNet. This VNet should have line of sight to the application you want to test. The test rig will be configured for your Azure DevOps Services account and can be used to run cloud-based load tests using Visual Studio.
Bu Azure Resource Manager (ARM) şablonu Microsoft tarafından değil bir topluluk üyesi tarafından oluşturulmuştur. Her bir ARM şablonu size Microsoft tarafından değil, bir lisans sözleşmesi altında sahibi tarafından lisanslanmıştır. Microsoft, topluluk üyeleri tarafından sağlanan ve lisanslanan ARM şablonlarından sorumlu değildir ve güvenlik, uyumluluk ve performans denetimi yapmaz. Topluluk ARM şablonları herhangi bir Microsoft destek programı veya hizmeti altında desteklenmez ve herhangi bir garanti olmaksızın OLDUĞU GİBİ kullanıma sunulur.
Parametreler
Parametre Adı | Açıklama |
---|---|
azureDevOpsServicesAccount | Please enter the Azure DevOps Services account name. If you access your Azure DevOps Services account using 'https://dev.azure.com/yourAccountName' or 'https://yourAccountName.visualstudio.com', enter yourAccountName. |
personalAccessToken | Personal Access Token (PAT) for the Azure DevOps Services account. You should select the scope as 'Load test (read and write)'. Please refer 'https://www.visualstudio.com/en-us/get-started/setup/use-personal-access-tokens-to-authenticate' for more details. |
agentCount | Number of load generating agent machines to provision |
publicIPAddressType | Type of public IP allocation method |
adminUsername | Username for the virtual machine. |
adminPassword | Password for the virtual machine. |
existingVNetResourceGroupName | Name of the existing VNET resource group |
existingVNetName | Name of the existing VNet |
subnetName | Name of the subnet in the virtual network you want to use |
location | Location for all resources. |
Şablonu kullanın
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'i yükleme ve yapılandırma
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vsts-cloudloadtest-rig-existing-vnet/azuredeploy.json
Komut satırı
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 deploymentAzure Platformlar Arası Komut Satırı Arabirimini Yükleme ve Yapılandırma
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-vsts-cloudloadtest-rig-existing-vnet/azuredeploy.json