The Azure Quickstart templates are currently available in English
This template allows you to deploy a new Linux HDInsight cluster with new Data Lake Store and Storage accounts.
Este modelo do ARM (Azure Resource Manager) foi criado por um membro da comunidade, e não pela Microsoft. Cada modelo do ARM é licenciado para você de acordo com o contrato de licença de seu proprietário, e não da Microsoft. A Microsoft não é responsável por modelos do ARM fornecidos e licenciado por membros da comunidade e não avalia sua segurança, compatibilidade ou desempenho. Modelos do ARM da comunidade não têm suporte de nenhum programa ou serviço de suporte da Microsoft e são disponibilizados DA FORMA COMO ESTÃO, sem nenhum tipo de garantia.
Parâmetros
Nome do parâmetro | Descrição |
---|---|
clusterType | The type of the HDInsight cluster to create. |
clusterName | The name of the HDInsight cluster to create. |
clusterLoginUserName | These credentials can be used to submit jobs to the cluster and to log into cluster dashboards. |
clusterLoginPassword | The password must be at least 10 characters in length and must contain at least one digit, one non-alphanumeric character, and one upper or lower case letter. |
sshUserName | These credentials can be used to remotely access the cluster. |
sshPassword | The password must be at least 10 characters in length and must contain at least one digit, one non-alphanumeric character, and one upper or lower case letter. |
clusterStorageAccountName | The name of the Azure storage account to be created and be used as the cluster's primary storage. |
adlStoreName | The name of the Azure Data Lake Store account to be created and connected to the cluster. |
aadTenantId | The tenant ID (guid) of the Azure Active Directory (AAD) tenant where the service principal resides. |
servicePrincipalObjectId | The AAD object ID (guid) of the service principal that represents the HDInsight cluster. The service principal will be given permissions on the root folder of the Data Lake Store account. |
servicePrincipalApplicationId | The AAD application ID (guid) of the service principal that represents the HDInsight cluster. The service principal will be given permissions on the root folder of the Data Lake Store account. |
servicePrincipalCertificateContents | The base-64-encoded contents of the PFX certificate file that can be used to authenticate as the service principal that represents the HDInsight cluster. |
servicePrincipalCertificatePassword | The password securing the PFX certificate file that can be used to authenticate as the service principal that represents the HDInsight cluster. |
clusterWorkerNodeCount | The number of nodes in the HDInsight cluster. |
Usar o modelo
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 deploymentInstale e configure o PowerShell do Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-hdinsight-datalake-store-azure-storage/azuredeploy.json
Linha de comando
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 deploymentInstalar e configurar a Interface de Linha de Comando de Plataforma Cruzada do Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-hdinsight-datalake-store-azure-storage/azuredeploy.json