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: articles/aks/dapr-workflow.md
+13-18Lines changed: 13 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ ms.author: hannahhunter
6
6
ms.reviewer: nuversky
7
7
ms.service: azure-kubernetes-service
8
8
ms.topic: article
9
-
ms.date: 03/06/2023
9
+
ms.date: 04/05/2023
10
10
ms.custom: devx-track-azurecli
11
11
---
12
12
13
-
# Manage workflows with the Dapr extension for Azure Kubernetes Service (AKS)
13
+
# Deploy and run workflows with the Dapr extension for Azure Kubernetes Service (AKS)
14
14
15
15
With Dapr Workflow, you can easily orchestrate messaging, state management, and failure-handling logic across various microservices. Dapr Workflow can help you create long-running, fault-tolerant, and stateful applications.
16
16
@@ -55,13 +55,19 @@ cd dapr-workflows-aks-sample
55
55
56
56
### Create a Kubernetes cluster
57
57
58
-
Create an AKS cluster and attach to [the ACR provided with the sample][deployment-yaml]:
58
+
Create a resource group to hold the AKS cluster.
59
59
60
60
```sh
61
-
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 2 --generate-ssh-keys --attach-acr samples
61
+
az group create --name myResourceGroup --location eastus
62
62
```
63
63
64
-
Make sure `kubectl` is installed and pointed to your AKS cluster. If you use [the Azure Cloud Shell][az-cloud-shell], kubectl is already installed.
64
+
Create an AKS cluster.
65
+
66
+
```sh
67
+
az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 2 --generate-ssh-keys
68
+
```
69
+
70
+
[Make sure `kubectl` is installed and pointed to your AKS cluster.][kubectl] If you use [the Azure Cloud Shell][az-cloud-shell], `kubectl` is already installed.
65
71
66
72
For more information, see the [Deploy an AKS cluster][cluster] tutorial.
67
73
@@ -77,11 +83,7 @@ Install the Dapr extension on your AKS cluster. Before you start, make sure you'
0 commit comments