File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ New-AzStorageContainer -Name $containerName -Context $storageContext
94
94
Create an Apache Kafka on HDInsight cluster with [ New-AzHDInsightCluster] ( /powershell/module/az.HDInsight/New-azHDInsightCluster ) .
95
95
96
96
``` azurepowershell-interactive
97
- # Create a Kafka 1.1 cluster
97
+ # Create a Kafka 2.4.0 cluster
98
98
$clusterName = Read-Host -Prompt "Enter the name of the Kafka cluster"
99
99
$httpCredential = Get-Credential -Message "Enter the cluster login credentials" -UserName "admin"
100
100
$sshCredentials = Get-Credential -Message "Enter the SSH user credentials" -UserName "sshuser"
@@ -105,7 +105,7 @@ $clusterType="Kafka"
105
105
$disksPerNode=2
106
106
107
107
$kafkaConfig = New-Object "System.Collections.Generic.Dictionary``2[System.String,System.String]"
108
- $kafkaConfig.Add("kafka", "1.1 ")
108
+ $kafkaConfig.Add("kafka", "2.4.0 ")
109
109
110
110
New-AzHDInsightCluster `
111
111
-ResourceGroupName $resourceGroup `
You can’t perform that action at this time.
0 commit comments