Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
Deploy a Windows VM with SonarQube installed and configured against an Azure SQL Database.
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
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 |
Uso de la plantilla
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 deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/sonarqube/sonarqube-azuresql/azuredeploy.json
Línea de comandos
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 deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/application-workloads/sonarqube/sonarqube-azuresql/azuredeploy.json