The Azure Quickstart templates are currently available in English
This template provides a easy way to deploy a Sonarqube docker image (alpine tag) on a Linux Web App with Azure database for MySQL
Ezt az Azure Resource Manager-sablont (ARM-sablont) nem a Microsoft, hanem a közösség egyik tagja készítette. Az egyes ARM-sablonok nem a Microsofttól, hanem a sablon tulajdonosától licencelhetők licencszerződés keretében. A Microsoft semmilyen felelősséget nem vállalal a közösség tagjai által biztosított és licencbe adott ARM-sablonokért, és azokat a biztonság, kompatibilitás és teljesítmény szempontjából nem ellenőrzi. A közösségi ARM-sablonokat a Microsoft semmilyen terméktámogatási programja vagy szolgáltatása nem támogatja, és ezek „adott állapotukban” állnak rendelkezésre, mindennemű garancia nélkül.
Paraméterek
Paraméter neve | Leírás |
---|---|
siteName | Name of azure web app |
servicePlanTier | Tier for Service Plan |
servicePlanSku | Size for Service Plan |
administratorLogin | Database administrator login name |
administratorLoginPassword | Database administrator password |
databaseSkuCapacity | Azure database for MySQL compute capacity in vCores (2,4,8,16,32) |
databaseSkuName | Azure database for MySQL sku name |
databaseSkuSizeMB | Azure database for MySQL Sku Size |
databaseSkuTier | Azure database for MySQL pricing tier |
mysqlVersion | MySQL version |
location | Location for all the resources |
databaseSkuFamily | Azure database for MySQL sku family |
A sablon használata
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 deploymentAz Azure PowerShell telepítése és konfigurálása
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-webapp-linux-sonarqube-mysql/azuredeploy.json
Parancssor
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 deploymentAz Azure többplatformos parancssori felületének telepítése és beállítása
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-webapp-linux-sonarqube-mysql/azuredeploy.json