Skip to content

Commit 38e1a25

Browse files
committed
acrolinx
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 8c172ad commit 38e1a25

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/aks/dapr.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.custom: devx-track-azurecli, references_regions
1515
[Dapr](./dapr-overview.md) simplifies building resilient, stateless, and stateful applications that run on the cloud and edge and embrace the diversity of languages and developer frameworks. With Dapr's sidecar architecture, you can keep your code platform agnostic while tackling challenges around building microservices, like:
1616
- Calling other services reliably and securely
1717
- Building event-driven apps with pub/sub
18-
- Building applications that are portable across multiple cloud services and hosts (for example, Kubernetes vs. a VM)
18+
- Building applications that are portable across multiple cloud services and hosts (for example, Kubernetes vs. a virtual machine)
1919

2020
> [!NOTE]
2121
> If you plan on installing Dapr in a Kubernetes production environment, see the [Dapr guidelines for production usage][kubernetes-production] documentation page.
@@ -39,9 +39,9 @@ Once Dapr is installed on your cluster, you can begin to develop using the Dapr
3939
## Prerequisites
4040

4141
- An Azure subscription. [Don't have one? Create a free account.](https://azure.microsoft.com/free/?WT.mc_id=A261C142F)
42-
- Install the latest version of the [Azure CLI][install-cli].
42+
- The latest version of the [Azure CLI][install-cli].
4343
- An existing [AKS cluster][deploy-cluster] or connected [Arc-enabled Kubernetes cluster][arc-k8s-cluster].
44-
- [An Azure Kubernetes Service RBAC Admin role](../role-based-access-control/built-in-roles.md#azure-kubernetes-service-rbac-admin)
44+
- [An Azure Kubernetes Service Role-Based Access Control Admin role](../role-based-access-control/built-in-roles.md#azure-kubernetes-service-rbac-admin)
4545

4646
Select how you'd like to install, deploy, and configure the Dapr extension.
4747

@@ -64,7 +64,7 @@ az extension update --name k8s-extension
6464

6565
### Register the `KubernetesConfiguration` resource provider
6666

67-
If you haven't previously used cluster extensions, you may need to register the resource provider with your subscription. You can check the status of the provider registration using the [az provider list][az-provider-list] command, as shown in the following example:
67+
If you aren't already using cluster extensions, you may need to register the resource provider with your subscription. You can check the status of the provider registration using the [az provider list][az-provider-list] command, as shown in the following example:
6868

6969
```azurecli-interactive
7070
az provider list --query "[?contains(namespace,'Microsoft.KubernetesConfiguration')]" -o table
@@ -137,7 +137,7 @@ When configuring the extension, you can choose to install Dapr from a particular
137137
| Value | Description |
138138
| -------- | ----------------------------------------- |
139139
| `stable` | Default. |
140-
| `dev` | Early releases, can contain experimental features. Not suitable for production. |
140+
| `dev` | Early releases that can contain experimental features. Not suitable for production. |
141141

142142
For example:
143143

@@ -168,7 +168,7 @@ To upgrade to the latest Dapr version in a production environment, you need to m
168168
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

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

173173
```azurecli
174174
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
@@ -206,7 +206,7 @@ az k8s-extension create --cluster-type managedClusters \
206206

207207
### Register the `KubernetesConfiguration` resource provider
208208

209-
If you haven't previously used cluster extensions, you may need to register the resource provider with your subscription. You can check the status of the provider registration using the [az provider list][az-provider-list] command, as shown in the following example:
209+
If you aren't already using cluster extensions, you may need to register the resource provider with your subscription. You can check the status of the provider registration using the [az provider list][az-provider-list] command, as shown in the following example:
210210

211211
```azurecli-interactive
212212
az provider list --query "[?contains(namespace,'Microsoft.KubernetesConfiguration')]" -o table
@@ -248,7 +248,7 @@ az feature show --namespace Microsoft.KubernetesConfiguration --name ExtensionTy
248248

249249
## Deploy the Dapr extension on your AKS or Arc-enabled Kubernetes cluster
250250

251-
Create a Bicep template similar to the following example to deploy the Dapr extension to your existing cluster.
251+
Create a Bicep template similar to the following example and deploy the Dapr extension to your existing cluster.
252252

253253
```bicep
254254
@description('The name of the Managed Cluster resource.')
@@ -282,7 +282,7 @@ resource daprExtension 'Microsoft.KubernetesConfiguration/extensions@2022-11-01'
282282
}
283283
```
284284

285-
Set the following variables, changing the values below to your actual resource group and cluster names.
285+
Set the following variables, changing the following values to your actual resource group and cluster names.
286286

287287
```azurecli-interactive
288288
MY_RESOURCE_GROUP=myResourceGroup
@@ -338,7 +338,7 @@ When configuring the extension, you can choose to install Dapr from a particular
338338
| Value | Description |
339339
| -------- | ----------------------------------------- |
340340
| `stable` | Default. |
341-
| `dev` | Early releases, can contain experimental features. Not suitable for production. |
341+
| `dev` | Early releases that can contain experimental features. Not suitable for production. |
342342

343343
For example:
344344

@@ -366,7 +366,7 @@ If you need to delete the extension and remove Dapr from your AKS cluster, you c
366366
az k8s-extension delete --resource-group myResourceGroup --cluster-name myAKSCluster --cluster-type managedClusters --name dapr
367367
```
368368

369-
Or simply remove the Bicep template.
369+
Or you can remove the Bicep template.
370370

371371
## Next Steps
372372

0 commit comments

Comments
 (0)