The Azure Quickstart templates are currently available in English
This template deploys a multi VM Cloudera cluster, with one node running Cloudera Manager, two name nodes, and N data nodes.
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 |
---|---|
adminUsername | Admin user name for the VMs |
adminPassword | Admin password for the VMs (A mix of upper and lower-case characters, digits and symbols) |
cmUsername | User name for the Cloudera Manager |
cmPassword | password for the Cloudera Manager (A mix of upper and lower-case characters, digits and symbols) |
dnsNamePrefix | Unique public DNS name where the VMs will be exposed |
masterStorageAccountType | The type of the Storage Account to be created for master nodes (defaults to Premium_LRS) |
workerStorageAccountType | The type of the Storage Account to be created for worker nodes (defaults to Standard_LRS) |
virtualNetworkName | The name of the virtual network provisioned for the deployment |
vnetNewOrExisting | Indicator for new or exiting Virtual Network |
virtualNetworkRGName | Resource Group Name for Vnet. For new VNet leave it empty, otherwise type in existing resource group name |
subnetName | Subnet name for the virtual network where resources will be provisioned |
addressPrefix | Virtual Network address CIDR |
subnetPrefix | CIDR for the subnet where VMs will be placed |
masterNodeIPAddress | IP address for the first master |
dataNodeIPOffSetFromMaster | IP address from the master node, for example if the first master is 10.1.1.1, then the first dataNode would be 10.1.1.11 |
tshirtSize | T-shirt size of the Cloudera cluster (Eval, Prod) |
numberOfDataNodes | Number of data nodes for Prod (defaults to 3) |
vmSize | The size of the VMs deployed in the cluster (defaults to Standard_DS14) |
vmImage | The OS VM Image (defaults to ClouderaCentOS6_7) |
company | Your Company |
emailAddress | your email |
businessPhone | your business phone number |
firstName | Your FirstName |
lastName | Your LastName |
jobRole | Job Role |
jobFunction | Job Function |
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/cloudera-on-centos/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/cloudera-on-centos/azuredeploy.json