The Azure Quickstart templates are currently available in English
Deploy a Windows VM with SonarQube installed and configured against an Azure SQL Database.
此 Azure Resource Manager (ARM) 模板由社区的某个成员(而不是由 Microsoft)创建。每个 ARM 模板都根据其所有者(不是 Microsoft)的许可协议向你授予许可。Microsoft 不对由社区成员提供并授予许可的 ARM 模板负责,并且不针对安全性、兼容性和性能进行筛选。社区 ARM 模板不由任何 Microsoft 支持计划或服务提供支持,按“原样”提供,没有任何种类的担保。
参数
参数名 | 说明 |
---|---|
sqVM_AppName | Name of the VM that SonarQube will be installed upon |
sq_PublicIP_DnsPrefix | The prefix of the public URL for the VM on the Internet. It should be unique across all Azure and match with the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$ or it will raise an error. |
sqVM_AppAdmin_UserName | Admin account name for the SonarQube VM |
sqVM_AppAdmin_Password | Password for the SonarQube VM Admin account |
sqDB_Admin_UserName | Admin account name for Azure SQL Server |
sqDB_Admin_Password | Password for Azure SQL Server Admin account |
sqDB_ServerName | Name of Azure SQL Server (limit to 10 chars or less) |
sqDB_DBName | Name of the SonarQube DB on the Azure SQL Server |
sqDB_DBEdition | Edition of Azure SQL Database to create |
diskType | Type of Azure Storage Acct to create |
sqVM_Installation_Type | Type of SonarQube installation, Secure (HTTPS) or non-secure (HTTP) |
sqVM_ReverseProxy_Type | Type of Reverse Proxy to secure SonarQube |
sqVM_LTS_Version | Version of SonarQube to install |
sonarQubeDownloadRoot | Location to download the installation binary of SonarQube from |
_artifactsLocation | The base URI where artifacts required by this template are located. When the template is deployed using the accompanying scripts, a private location in the subscription will be used and this value will be automatically generated. |
location | Location for all resources. |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. |
SQvmAppVmSize | Size fo the VM |
使用模板
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 deployment安装和配置 Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/sonarqube-azuresql/azuredeploy.json
命令行
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 deployment安装和配置 Azure 跨平台命令行界面
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/sonarqube-azuresql/azuredeploy.json