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
Verify Dapr has been installed by running the following command:
87
+
Verify Dapr is installed:
88
88
89
89
```sh
90
90
kubectl get pods -A
@@ -108,7 +108,7 @@ kubectl apply -f redis.yaml
108
108
109
109
### Run the application
110
110
111
-
Once you've deployed Redis, deploy the application to AKS:
111
+
Once Redis is deployed, deploy the application to AKS:
112
112
113
113
```sh
114
114
kubectl apply -f deployment.yaml
@@ -131,7 +131,7 @@ echo $DAPR_URL
131
131
132
132
## Start the workflow
133
133
134
-
Now that the application and Dapr have been deployed to the AKS cluster, you can now start and query workflow instances. Begin by making an API call to the sample app to restock items in the inventory:
134
+
Now that the application and Dapr are deployed to the AKS cluster, you can now start and query workflow instances. Restock items in the inventory using the following API call to the sample app:
135
135
136
136
```sh
137
137
curl -X GET $APP_URL/stock/restock
@@ -140,41 +140,44 @@ curl -X GET $APP_URL/stock/restock
140
140
Start the workflow:
141
141
142
142
```sh
143
-
curl -X POST $DAPR_URL/v1.0-alpha1/workflows/dapr/OrderProcessingWorkflow/1234/start \
143
+
curl -i -X POST $DAPR_URL/v1.0-beta1/workflows/dapr/OrderProcessingWorkflow/start?instanceID=1234 \
0 commit comments