You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AKS-Hybrid/create-clusters-bicep.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,24 +27,24 @@ Before you begin, make sure you have the following prerequisites:
27
27
28
28
- Azure subscription ID: the Azure subscription ID that uses Azure Stack HCI for deployment and registration.
29
29
- 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.
31
31
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`.
33
33
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.
34
34
35
35
## Create an SSH key pair
36
36
37
37
To create an SSH key pair (same as Azure AKS), use the following procedure:
38
38
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.
40
40
1. Create an SSH key pair using the `az sshkey create` Azure CLI command or the `ssh-keygen` command:
41
41
42
42
```azurecli
43
43
# Create an SSH key pair using Azure CLI
44
44
az sshkey create --name "mySSHKey" --resource-group "myResourceGroup"
45
45
```
46
46
47
-
Or, create an SSH key pair using ssh-keygen:
47
+
Or, create an SSH key pair using `ssh-keygen`:
48
48
49
49
```bash
50
50
ssh-keygen -t rsa -b 4096
@@ -54,7 +54,7 @@ For more information about creating SSH keys, see [Create and manage SSH keys fo
54
54
55
55
## Update and review the Bicep scripts
56
56
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).
58
58
59
59
### Bicep parameter file: aksarc.bicepparam
60
60
@@ -77,7 +77,7 @@ param aksClusterName string
77
77
param location string = 'eastus'
78
78
79
79
// 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')
0 commit comments