Skip to content

Commit b5dbb9c

Browse files
committed
add placeholders around example cluster and rg names
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 41b1b8a commit b5dbb9c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/aks/dapr.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ Create the Dapr extension, which installs Dapr on your AKS or Arc-enabled Kubern
119119
For example, install the latest version of Dapr via the Dapr extension on your AKS cluster:
120120
```azurecli
121121
az k8s-extension create --cluster-type managedClusters \
122-
--cluster-name myAKSCluster \
123-
--resource-group myResourceGroup \
122+
--cluster-name <myAKSCluster> \
123+
--resource-group <myResourceGroup> \
124124
--name dapr \
125125
--extension-type Microsoft.Dapr \
126126
--auto-upgrade-minor-version false
@@ -165,13 +165,13 @@ You can disable auto-update by specifying the `--auto-upgrade-minor-version` par
165165
To upgrade to the latest Dapr version in a production environment, you need to manually upgrade. Start by viewing a list of the stable Dapr versions available to your managed AKS cluster. Run the following command:
166166

167167
```azurecli
168-
az k8s-extension extension-types list-versions-by-cluster --resource-group myResourceGroup --cluster-name myCluster --cluster-type managedClusters --extension-type microsoft.dapr --release-train stable
168+
az k8s-extension extension-types list-versions-by-cluster --resource-group <myResourceGroup> --cluster-name <myCluster> --cluster-type managedClusters --extension-type microsoft.dapr --release-train stable
169169
```
170170

171171
To see the latest stable Dapr version available to your managed AKS cluster, run the following command:
172172

173173
```azurecli
174-
az k8s-extension extension-types list-versions-by-cluster --resource-group myResourceGroup --cluster-name myCluster --cluster-type managedClusters --extension-type microsoft.dapr --release-train stable --show-latest
174+
az k8s-extension extension-types list-versions-by-cluster --resource-group <myResourceGroup> --cluster-name <myCluster> --cluster-type managedClusters --extension-type microsoft.dapr --release-train stable --show-latest
175175
```
176176

177177
To view a list of the stable Dapr versions available _by location_:
@@ -193,8 +193,8 @@ The same command-line argument is used for installing a specific version of Dapr
193193

194194
```azurecli
195195
az k8s-extension create --cluster-type managedClusters \
196-
--cluster-name myAKSCluster \
197-
--resource-group myResourceGroup \
196+
--cluster-name <myAKSCluster> \
197+
--resource-group <myResourceGroup> \
198198
--name dapr \
199199
--extension-type Microsoft.Dapr \
200200
--auto-upgrade-minor-version false \
@@ -285,8 +285,8 @@ resource daprExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01'
285285
Set the following variables, changing the following values to your actual resource group and cluster names.
286286

287287
```azurecli-interactive
288-
MY_RESOURCE_GROUP=myResourceGroup
289-
MY_AKS_CLUSTER=myAKScluster
288+
MY_RESOURCE_GROUP=<myResourceGroup>
289+
MY_AKS_CLUSTER=<myAKSCluster>
290290
```
291291

292292
Deploy the Bicep template using the `az deployment group` command.
@@ -363,7 +363,7 @@ Troubleshoot Dapr errors via the [common Dapr issues and solutions guide][dapr-t
363363
If you need to delete the extension and remove Dapr from your AKS cluster, you can use the following command:
364364

365365
```azurecli
366-
az k8s-extension delete --resource-group myResourceGroup --cluster-name myAKSCluster --cluster-type managedClusters --name dapr
366+
az k8s-extension delete --resource-group <myResourceGroup> --cluster-name <myAKSCluster> --cluster-type managedClusters --name dapr
367367
```
368368

369369
Or you can remove the Bicep template.

0 commit comments

Comments
 (0)