Skip to content

Commit 6cab119

Browse files
committed
update doc per test
Signed-off-by: Hannah Hunter <[email protected]>
1 parent 10e8d8e commit 6cab119

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

articles/aks/dapr-workflow.md

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ms.author: hannahhunter
66
ms.reviewer: nuversky
77
ms.service: azure-kubernetes-service
88
ms.topic: article
9-
ms.date: 03/06/2023
9+
ms.date: 04/05/2023
1010
ms.custom: devx-track-azurecli
1111
---
1212

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)
1414

1515
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.
1616

@@ -55,13 +55,19 @@ cd dapr-workflows-aks-sample
5555

5656
### Create a Kubernetes cluster
5757

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.
5959

6060
```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
6262
```
6363

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.
6571

6672
For more information, see the [Deploy an AKS cluster][cluster] tutorial.
6773

@@ -77,11 +83,7 @@ Install the Dapr extension on your AKS cluster. Before you start, make sure you'
7783
az k8s-extension create --cluster-type managedClusters --cluster-name myAKSCluster --resource-group myResourceGroup --name dapr --extension-type Microsoft.Dapr
7884
```
7985

80-
Verify Dapr has been installed by running _either_ of the following commands:
81-
82-
```sh
83-
az k8s-extension show --cluster-type managedClusters --cluster-name myAKSCluster --resource-group myResourceGroup --name dapr
84-
```
86+
Verify Dapr has been installed by running the following command:
8587

8688
```sh
8789
kubectl get pods -A
@@ -179,14 +181,6 @@ Notice that the workflow status is marked as completed.
179181

180182
## Next steps
181183

182-
In this guide, you deployed and ran workflows on a Dapr extension for AKS. You learned how to:
183-
184-
> [!div class="checklist"]
185-
> - Create an Azure Container Registry and an AKS cluster for this sample.
186-
> - Install the Dapr extension on your AKS cluster.
187-
> - Deploy the sample application to AKS.
188-
> - Start and query workflow instances using HTTP API calls.
189-
190184
[Learn how to add configuration settings to the Dapr extension on your AKS cluster][dapr-config].
191185

192186
<!-- Links Internal -->
@@ -198,6 +192,7 @@ In this guide, you deployed and ran workflows on a Dapr extension for AKS. You l
198192
[k8s-sp]: ./dapr.md#register-the-kubernetesconfiguration-service-provider
199193
[dapr-config]: ./dapr-settings.md
200194
[az-cloud-shell]: ./learn/quick-kubernetes-deploy-powershell.md#azure-cloud-shell
195+
[kubectl]: ./tutorial-kubernetes-deploy-cluster.md#connect-to-cluster-using-kubectl
201196

202197
<!-- Links External -->
203198
[dapr-workflow-sample]: https://github.com/shubham1172/dapr-workflows-aks-sample

0 commit comments

Comments
 (0)