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
[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:
16
16
- Calling other services reliably and securely
17
17
- 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)
19
19
20
20
> [!NOTE]
21
21
> 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
39
39
## Prerequisites
40
40
41
41
- 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].
43
43
- 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)
45
45
46
46
Select how you'd like to install, deploy, and configure the Dapr extension.
47
47
@@ -64,7 +64,7 @@ az extension update --name k8s-extension
64
64
65
65
### Register the `KubernetesConfiguration` resource provider
66
66
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:
68
68
69
69
```azurecli-interactive
70
70
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
@@ -206,7 +206,7 @@ az k8s-extension create --cluster-type managedClusters \
206
206
207
207
### Register the `KubernetesConfiguration` resource provider
208
208
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:
210
210
211
211
```azurecli-interactive
212
212
az provider list --query "[?contains(namespace,'Microsoft.KubernetesConfiguration')]" -o table
@@ -248,7 +248,7 @@ az feature show --namespace Microsoft.KubernetesConfiguration --name ExtensionTy
248
248
249
249
## Deploy the Dapr extension on your AKS or Arc-enabled Kubernetes cluster
250
250
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.
252
252
253
253
```bicep
254
254
@description('The name of the Managed Cluster resource.')
0 commit comments