Skip to content

Commit 55b6d0c

Browse files
Merge pull request #280906 from pauldotyu/main
adding sub heading to keda workload identity doc
2 parents 6c18fbf + 3b517db commit 55b6d0c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

articles/aks/keda-workload-identity.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ At this point everything is configured for scaling with KEDA and Microsoft Entra
274274
EOF
275275
````
276276
277+
## Consume messages from Azure Service Bus
278+
279+
Now that we have published messages to the Azure Service Bus queue, we will deploy a ScaledJob to consume the messages. This ScaledJob will use the KEDA TriggerAuthentication resource to authenticate against the Azure Service Bus queue using the workload identity and scale out every 10 messages.
280+
277281
1. Deploy a ScaledJob resource to consume the messages. The scale trigger will be configured to scale out every 10 messages. The KEDA scaler will create 10 jobs to consume the 100 messages.
278282
279283
```azurecli-interactive
@@ -335,11 +339,21 @@ At this point everything is configured for scaling with KEDA and Microsoft Entra
335339
Normal KEDAJobsCreated 10m scale-handler Created 10 jobs
336340
```
337341
342+
## Clean up resources
343+
344+
After you verify that the deployment is successful, you can clean up the resources to avoid incurring Azure costs.
345+
346+
1. Delete the Azure resource group and all resources in it using the [`az group delete`][az-group-delete] command.
347+
348+
```azurecli-interactive
349+
az group delete --name $RG_NAME --yes --no-wait
350+
```
351+
338352
## Next steps
339353
340354
This article showed you how to securely scale your applications using the KEDA add-on and workload identity in AKS.
341355
342-
With the KEDA add-on installed on your cluster, you can [deploy a sample application][keda-sample] to start scaling apps. For information on KEDA troubleshooting, see [Troubleshoot the Kubernetes Event-driven Autoscaling (KEDA) add-on][keda-troubleshoot].
356+
For information on KEDA troubleshooting, see [Troubleshoot the Kubernetes Event-driven Autoscaling (KEDA) add-on][keda-troubleshoot].
343357
344358
To learn more about KEDA, see the [upstream KEDA docs][keda].
345359

0 commit comments

Comments
 (0)