@@ -218,10 +218,10 @@ This section covers the Azure PowerShell steps in [Tutorial: Enable Azure Contai
218
218
1. Connect your AKS cluster to Azure Arc.
219
219
220
220
```azurepowershell
221
- $CLUSTER_NAME="${GROUP_NAME}-cluster" # The name for the Azure- Arc connected cluster
221
+ $CLUSTER_NAME="${GROUP_NAME}-cluster" # The name for the Azure Arc connected cluster
222
222
az connectedk8s connect `
223
223
--resource-group $GROUP_NAME ` # The name for the Azure resource group with your Azure Arc resources
224
- --name $CLUSTER_NAME # The name for the Azure- Arc connected cluster
224
+ --name $CLUSTER_NAME # The name for the Azure Arc connected cluster
225
225
```
226
226
227
227
For more information, see [az connectedk8s connect](/cli/azure/connectedk8s?#az-connectedk8s-connect).
@@ -231,7 +231,7 @@ This section covers the Azure PowerShell steps in [Tutorial: Enable Azure Contai
231
231
```azurepowershell
232
232
az connectedk8s show `
233
233
--resource-group $GROUP_NAME ` # The name for the Azure resource group with your Azure Arc resources
234
- --name $CLUSTER_NAME # The name for the Azure- Arc connected cluster
234
+ --name $CLUSTER_NAME # The name for the Azure Arc connected cluster
235
235
```
236
236
237
237
If the **provisioningState** property value isn't set to **Succeeded**, run the command again after one minute.
@@ -301,7 +301,7 @@ This section covers the Azure PowerShell steps in [Tutorial: Enable Azure Contai
301
301
--resource-group $GROUP_NAME ` # The name for the Azure resource group with your Azure Arc resources
302
302
--name $EXTENSION_NAME ` # The name for the Azure Container Apps extension
303
303
--cluster-type connectedClusters `
304
- --cluster-name $CLUSTER_NAME ` # The name for the Azure- Arc connected cluster
304
+ --cluster-name $CLUSTER_NAME ` # The name for the Azure Arc connected cluster
305
305
--extension-type 'Microsoft.App.Environment' `
306
306
--release-train stable `
307
307
--auto-upgrade-minor-version true `
@@ -348,7 +348,7 @@ This section covers the Azure PowerShell steps in [Tutorial: Enable Azure Contai
348
348
```azurepowershell
349
349
$EXTENSION_ID=$(az k8s-extension show `
350
350
--cluster-type connectedClusters `
351
- --cluster-name $CLUSTER_NAME ` # The name for the Azure- Arc connected cluster
351
+ --cluster-name $CLUSTER_NAME ` # The name for the Azure Arc connected cluster
352
352
--resource-group $GROUP_NAME ` # The name for the Azure resource group with your Azure Arc resources
353
353
--name $EXTENSION_NAME ` # The name for the Azure Container Apps extension
354
354
--query id `
@@ -376,7 +376,7 @@ This section covers the Azure PowerShell steps in [Tutorial: Enable Azure Contai
376
376
$CUSTOM_LOCATION_NAME="my-custom-location" # The name for the custom location
377
377
$CONNECTED_CLUSTER_ID=$(az connectedk8s show `
378
378
--resource-group $GROUP_NAME ` # The name for the Azure resource group with your Azure Arc resources
379
- --name $CLUSTER_NAME ` # The name for the Azure- Arc connected cluster
379
+ --name $CLUSTER_NAME ` # The name for the Azure Arc connected cluster
380
380
--query id `
381
381
--output tsv)
382
382
```
0 commit comments