Skip to content

Commit 44632e0

Browse files
author
Sreekanth Iyer (Ushta Te Consultancy Services)
committed
Resolved review comments
1 parent 8808310 commit 44632e0

File tree

4 files changed

+27
-33
lines changed

4 files changed

+27
-33
lines changed

articles/hdinsight-aks/.openpublishing.redirection.hdinsight-aks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
{
1919
"source_path_from_root": "/articles/hdinsight-aks/prerequisites-resources.md",
20-
"redirect_url": "/azure/hdinsight-aks/spark/quickstart-prerequisites-resources",
20+
"redirect_url": "/azure/hdinsight-aks/quickstart-prerequisites-resources",
2121
"redirect_document_id": false
2222
},
2323
{

articles/hdinsight-aks/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ items:
2222
href: quickstart-create-cluster.md
2323
- name: Create a HDInsight on AKS cluster pool and cluster - Azure CLI
2424
href: quickstart-create-cli.md
25-
- name: Create a HDInsight on AKS cluster pool and cluster - Azure PowerShell
25+
- name: Create an HDInsight on AKS cluster pool and cluster - Azure PowerShell
2626
href: quickstart-create-powershell.md
2727
- name: Concepts
2828
items:

articles/hdinsight-aks/quickstart-create-cli.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Quickstart - Create HDInsight on AKS cluster with Azure CLI
3-
description: Learn how to use Azure CLI to create a HDInsight on AKS cluster pool.
3+
description: Learn how to use Azure CLI to create an HDInsight on AKS cluster pool.
44
ms.service: hdinsight-aks
55
ms.topic: quickstart
66
ms.date: 06/04/2024
77
---
88

9-
# Quickstart: Create a HDInsight on AKS Cluster Pool with the Azure CLI on Azure
9+
# Quickstart: Create an HDInsight on AKS Cluster Pool with the Azure CLI on Azure
1010

11-
This quickstart shows you how to use the PowerShell to deploy a HDInsight on AKS Cluster Pool in Azure.
11+
This quickstart shows you how to use the PowerShell to deploy an HDInsight on AKS Cluster Pool in Azure.
1212

1313
## Prerequisites
1414
Ensure that you completed the [subscription prerequisites](./quickstart-prerequisites-subscription.md) and [resource prerequisites](./quickstart-prerequisites-resources.md) before creating a cluster pool.
@@ -31,7 +31,7 @@ New-AzResourceGroup -Name 'HDIonAKSPowershell' -Location 'West US 3'
3131

3232
## Create the HDInsight on AKS Cluster Pool
3333

34-
To create a HDInsight on AKS Cluster Pool in this resource group, use the `New-AzHdInsightOnAksClusterPool` command:
34+
To create an HDInsight on AKS Cluster Pool in this resource group, use the `New-AzHdInsightOnAksClusterPool` command:
3535
```PowerShell
3636
New-AzHdInsightOnAksClusterPool
3737
-Name <String>
@@ -79,10 +79,8 @@ Results:
7979
```
8080
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiClientId : a75ec1ff-3f7f-4f44-820c-6eaa5c8191af
8181
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiObjectId : 13990b78-4140-4d10-b333-69bb78524375
82-
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiResourceId : /subscriptions/0b130652-e15b-417e-885a-050c9a3024a2/resourcegroups/MC_hdi-44640a235566423490b9fb694d6c05a3_HDIClusterP
83-
oolSample_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/HDIClusterPoolSample-agentpool
84-
AkClusterProfileAksClusterResourceId : /subscriptions/0b130652-e15b-417e-885a-050c9a3024a2/resourceGroups/hdi-44640a235566423490b9fb694d6c05a3/providers/Micr
85-
osoft.ContainerService/managedClusters/HDIClusterPoolSample
82+
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiResourceId : /subscriptions/12345-abcde-12345-abcde
83+
AkClusterProfileAksClusterResourceId : /subscriptions/subscriptions/12345-abcde-12345-abcde
8684
AkClusterProfileAksVersion : 1.27.9
8785
AksManagedResourceGroupName : MC_hdi-44640a235566423490b9fb694d6c05a3_HDIClusterPoolSample_westus3
8886
ComputeProfileCount : 3
@@ -93,8 +91,8 @@ Id : /subscriptions/
9391
Location : West US 3
9492
LogAnalyticProfileEnabled : False
9593
LogAnalyticProfileWorkspaceId :
96-
ManagedResourceGroupName : hdi-44640a235566423490b9fb694d6c05a3
97-
Name : HDIClusterPoolSample
94+
ManagedResourceGroupName : hdi-12345
95+
Name : Contosopool
9896
NetworkProfileApiServerAuthorizedIPRange :
9997
NetworkProfileEnablePrivateApiServer :
10098
NetworkProfileOutboundType :
@@ -104,17 +102,17 @@ ProvisioningState : Succeeded
104102
ResourceGroupName : HDIonAKSPowershell
105103
Status : Running
106104
SystemDataCreatedAt : 6/2/2024 11:53:01 AM
107-
SystemDataCreatedBy : guodongwang@microsoft.com
105+
SystemDataCreatedBy : john@contoso.com
108106
SystemDataCreatedByType : User
109107
SystemDataLastModifiedAt : 6/2/2024 11:53:01 AM
110-
SystemDataLastModifiedBy : guodongwang@microsoft.com
108+
SystemDataLastModifiedBy : john@contoso.com
111109
SystemDataLastModifiedByType : User
112110
Tag : {
113111
}
114-
Type : microsoft.hdinsight/clusterpools
112+
Type : contoso.hdinsight/contosopools
115113
```
116114

117-
## Next Steps
115+
## Next steps
118116

119117
* [New-AzHdInsightOnAksClusterPool](/powershell/module/az.hdinsightonaks/new-azhdinsightonaksclusterpool)
120118
* [Create cluster pool and cluster](./quickstart-create-cluster.md)

articles/hdinsight-aks/quickstart-create-powershell.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
---
22
title: Quickstart - Create HDInsight on AKS cluster with Azure PowerShell
3-
description: Learn how to use Azure PowerShell to create a HDInsight on AKS cluster pool.
3+
description: Learn how to use Azure PowerShell to create an HDInsight on AKS cluster pool.
44
ms.service: hdinsight-aks
55
ms.topic: quickstart
66
ms.date: 06/04/2024
77
---
88

9+
# Quickstart: Create an HDInsight on AKS Cluster Pool with the Azure PowerShell on Azure
910

10-
# Quickstart: Create a HDInsight on AKS Cluster Pool with the Azure PowerShell on Azure
11-
12-
This quickstart shows you how to use the PowerShell to deploy a HDInsight on AKS Cluster Pool in Azure.
11+
This quickstart shows you how to use the PowerShell to deploy an HDInsight on AKS Cluster Pool in Azure.
1312

1413
## Prerequisites
1514

@@ -33,7 +32,7 @@ New-AzResourceGroup -Name 'HDIonAKSPowershell' -Location 'West US 3'
3332

3433
## Create the HDInsight on AKS Cluster Pool
3534

36-
To create a HDInsight on AKS Cluster Pool in this resource group, use the `New-AzHdInsightOnAksClusterPool` command:
35+
To create an HDInsight on AKS Cluster Pool in this resource group, use the `New-AzHdInsightOnAksClusterPool` command:
3736
```PowerShell
3837
New-AzHdInsightOnAksClusterPool
3938
-Name <String>
@@ -81,22 +80,19 @@ Results:
8180
```
8281
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiClientId : a75ec1ff-3f7f-4f44-820c-6eaa5c8191af
8382
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiObjectId : 13990b78-4140-4d10-b333-69bb78524375
84-
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiResourceId : /subscriptions/0b130652-e15b-417e-885a-050c9a3024a2/resourcegroups/MC_hdi-44640a235566423490b9fb694d6c05a3_HDIClusterP
85-
oolSample_westus3/providers/Microsoft.ManagedIdentity/userAssignedIdentities/HDIClusterPoolSample-agentpool
86-
AkClusterProfileAksClusterResourceId : /subscriptions/0b130652-e15b-417e-885a-050c9a3024a2/resourceGroups/hdi-44640a235566423490b9fb694d6c05a3/providers/Micr
87-
osoft.ContainerService/managedClusters/HDIClusterPoolSample
88-
AkClusterProfileAksVersion : 1.27.9
83+
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiResourceId : /subscriptions/12345-abcde
84+
AkClusterProfileAkClusterAgentPoolIdentityProfileMsiResourceId : /subscriptions/12345-abcde
85+
AkClusterProfileAksClusterResourceId : AkClusterProfileAksVersion : 1.27.9
8986
AksManagedResourceGroupName : MC_hdi-44640a235566423490b9fb694d6c05a3_HDIClusterPoolSample_westus3
9087
ComputeProfileCount : 3
9188
ComputeProfileVMSize : Standard_E4s_v3
9289
DeploymentId : 44640a235566423490b9fb694d6c05a3
93-
Id : /subscriptions/0b130652-e15b-417e-885a-050c9a3024a2/resourceGroups/HDIonAKSPowershell/providers/Microsoft.HDInsight/cl
94-
usterpools/HDIClusterPoolSample
90+
Id : /subscriptions/12345-abcde
9591
Location : West US 3
9692
LogAnalyticProfileEnabled : False
9793
LogAnalyticProfileWorkspaceId :
98-
ManagedResourceGroupName : hdi-44640a235566423490b9fb694d6c05a3
99-
Name : HDIClusterPoolSample
94+
ManagedResourceGroupName : 12345-abcde
95+
Name : Contosopool
10096
NetworkProfileApiServerAuthorizedIPRange :
10197
NetworkProfileEnablePrivateApiServer :
10298
NetworkProfileOutboundType :
@@ -106,17 +102,17 @@ ProvisioningState : Succeeded
106102
ResourceGroupName : HDIonAKSPowershell
107103
Status : Running
108104
SystemDataCreatedAt : 6/2/2024 11:53:01 AM
109-
SystemDataCreatedBy : guodongwang@microsoft.com
105+
SystemDataCreatedBy : someone@example.com
110106
SystemDataCreatedByType : User
111107
SystemDataLastModifiedAt : 6/2/2024 11:53:01 AM
112-
SystemDataLastModifiedBy : guodongwang@microsoft.com
108+
SystemDataLastModifiedBy : someone@example.com
113109
SystemDataLastModifiedByType : User
114110
Tag : {
115111
}
116112
Type : microsoft.hdinsight/clusterpools
117113
```
118114

119-
## Next Steps
115+
## Next steps
120116

121117
* [New-AzHdInsightOnAksClusterPool](/powershell/module/az.hdinsightonaks/new-azhdinsightonaksclusterpool)
122118
* [Create cluster pool and cluster](./quickstart-create-cluster.md)

0 commit comments

Comments
 (0)