Skip to content

Commit 5fcf03b

Browse files
committed
Tweaks
1 parent b52f097 commit 5fcf03b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

AKS-Hybrid/create-clusters-bicep.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,24 @@ Before you begin, make sure you have the following prerequisites:
2727

2828
- Azure subscription ID: the Azure subscription ID that uses Azure Stack HCI for deployment and registration.
2929
- Custom location name or ID: the Azure Resource Manager ID of the custom location. The custom location is configured during the Azure Stack HCI cluster deployment. Your infrastructure admin should give you the Resource Manager ID of the custom location. This parameter is required in order to create Kubernetes clusters. You can also get the Resource Manager ID using `az customlocation show --name "<custom location name>" --resource-group <azure resource group> --query "id" -o tsv`, if the infrastructure admin provides a custom location name and resource group name.
30-
- Logic network name or ID: the Azure Resource Manager ID of the Azure Stack HCI logical network that was created following these steps. Your admin should give you the ID of the logical network. This parameter is required in order to create Kubernetes clusters. You can also get the Azure Resource Manager ID using `az stack-hci-vm network lnet show --name "<lnet name>" --resource-group <azure resource group> --query "id" -o tsv` if you know the resource group in which the logical network was created.
30+
- Logical network name or ID: the Azure Resource Manager ID of the Azure Stack HCI logical network that was created following these steps. Your admin should give you the ID of the logical network. This parameter is required in order to create Kubernetes clusters. You can also get the Azure Resource Manager ID using `az stack-hci-vm network lnet show --name "<lnet name>" --resource-group <azure resource group> --query "id" -o tsv` if you know the resource group in which the logical network was created.
3131

32-
1. Make sure you have the latest version of Azure CLI on your development machine. You can also upgrade your Azure CLI version using `az upgrade`.
32+
1. Make sure you have the [latest version of Azure CLI](/cli/azure/install-azure-cli) on your development machine. You can also upgrade your Azure CLI version using `az upgrade`.
3333
1. Download and install **kubectl** on your development machine. The Kubernetes command-line tool, **kubectl**, enables you to run commands against Kubernetes clusters. You can use **kubectl** to deploy applications, inspect and manage cluster resources, and view logs.
3434

3535
## Create an SSH key pair
3636

3737
To create an SSH key pair (same as Azure AKS), use the following procedure:
3838

39-
1. Go to `https://shell.azure.com` to open a Cloud Shell session in your browser.
39+
1. [Open a Cloud Shell session](https://shell.azure.com) in your browser.
4040
1. Create an SSH key pair using the `az sshkey create` Azure CLI command or the `ssh-keygen` command:
4141

4242
```azurecli
4343
# Create an SSH key pair using Azure CLI
4444
az sshkey create --name "mySSHKey" --resource-group "myResourceGroup"
4545
```
4646

47-
Or, create an SSH key pair using ssh-keygen:
47+
Or, create an SSH key pair using `ssh-keygen`:
4848

4949
```bash
5050
ssh-keygen -t rsa -b 4096
@@ -54,7 +54,7 @@ For more information about creating SSH keys, see [Create and manage SSH keys fo
5454

5555
## Update and review the Bicep scripts
5656

57-
This section shows the Bicep parameter and template files. They are also available in an [Azure Quickstart template](https://github.com/Azure/azure-quickstart-templates).
57+
This section shows the Bicep parameter and template files. These files are also available in an [Azure Quickstart template](https://github.com/Azure/azure-quickstart-templates).
5858

5959
### Bicep parameter file: aksarc.bicepparam
6060

@@ -77,7 +77,7 @@ param aksClusterName string
7777
param location string = 'eastus'
7878
7979
// Default to 1 node CP
80-
@description('The name of AKS Arc cluster control plane IP, please provide this parameter during deployment')
80+
@description('The name of AKS Arc cluster control plane IP, provide this parameter during deployment')
8181
param aksControlPlaneIP string
8282
param aksControlPlaneNodeSize string = 'Standard_A4_v2'
8383
param aksControlPlaneNodeCount int = 1
@@ -89,22 +89,22 @@ param aksNodePoolNodeCount int = 1
8989
@allowed(['Linux', 'Windows'])
9090
param aksNodePoolOSType string = 'Linux'
9191
92-
@description('SSH public key used for cluster creation, please provide this parameter during deployment')
92+
@description('SSH public key used for cluster creation, provide this parameter during deployment')
9393
param sshPublicKey string
9494
9595
// Build LNet ID from LNet name
96-
@description('The name of LNet resource, please provide this parameter during deployment')
96+
@description('The name of LNet resource, provide this parameter during deployment')
9797
param hciLogicalNetworkName string
9898
resource logicalNetwork 'Microsoft.AzureStackHCI/logicalNetworks@2023-09-01-preview' existing = {
9999
name: hciLogicalNetworkName
100100
}
101101
102102
// Build custom location ID from custom location name
103-
@description('The name of custom location resource, please provide this parameter during deployment')
103+
@description('The name of custom location resource, provide this parameter during deployment')
104104
param hciCustomLocationName string
105105
var customLocationId = resourceId('Microsoft.ExtendedLocation/customLocations', hciCustomLocationName)
106106
107-
// Create the connected cluster - this is the Arc representation of the AKS cluster, used to create a Managed Identity for the provisioned cluster
107+
// Create the connected cluster. This is the Arc representation of the AKS cluster, used to create a Managed Identity for the provisioned cluster.
108108
resource connectedCluster 'Microsoft.Kubernetes/ConnectedClusters@2024-01-01' = {
109109
location: location
110110
name: aksClusterName
@@ -120,7 +120,7 @@ resource connectedCluster 'Microsoft.Kubernetes/ConnectedClusters@2024-01-01' =
120120
}
121121
}
122122
123-
// Create the provisioned cluster instance - this is the actual AKS cluster and provisioned on your HCI cluster via the Arc Resource Bridge
123+
// Create the provisioned cluster instance. This is the actual AKS cluster and provisioned on your HCI cluster via the Arc Resource Bridge.
124124
resource provisionedClusterInstance 'Microsoft.HybridContainerService/provisionedClusterInstances@2024-01-01' = {
125125
name: 'default'
126126
scope: connectedCluster

0 commit comments

Comments
 (0)