Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
This template allows you to create a Linux VM with the Azul Zulu OpenJDK JVM.
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 |
---|---|
OS | The Linux distribution for the VM. This will pick a fully patched image of the selected distribution. |
javaPackageName | Azul Zulu OpenJDK JVM for Azure package name |
vmSize | Size for the Virtual Machine. |
vmName | Name for the Virtual Machine. |
adminUsername | User name for the Virtual Machine. |
authenticationType | Type of authentication to use on the Virtual Machine. |
adminPasswordOrKey | Password or SSH key for the Virtual Machine. |
storageNewOrExisting | Determines whether or not a new storage account should be provisioned. |
storageAccountName | Name of the storage account |
storageAccountType | Storage account type |
storageAccountResourceGroupName | Name of the resource group for the existing storage account |
virtualNetworkNewOrExisting | Determines whether or not a new virtual network should be provisioned. |
virtualNetworkName | Name of the virtual network |
addressPrefixes | Address prefix of the virtual network |
subnetName | Name of the subnet |
subnetPrefix | Subnet prefix of the virtual network |
virtualNetworkResourceGroupName | Name of the resource group for the existing virtual network |
publicIpNewOrExisting | Determines whether or not a new public ip should be provisioned. |
publicIpName | Name of the public ip address |
publicIpDns | DNS of the public ip address for the VM |
publicIpResourceGroupName | Name of the resource group for the public ip address |
publicIpAllocationMethod | Allocation method for the public ip address |
publicIpSku | Name of the resource group for the public ip address |
location | Location for the resources. |
_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. |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. |
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/zulu/Linux-Java-ZuluOpenJDK/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/zulu/Linux-Java-ZuluOpenJDK/azuredeploy.json