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/azure-monitor/containers/integrate-keda.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,6 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
29
29
30
30
+ Azure Kubernetes Service (AKS) cluster
31
31
+ Prometheus sending metrics to an Azure Monitor workspace. For more information, see [Azure Monitor managed service for Prometheus](../essentials/prometheus-metrics-overview.md).
32
-
+ Microsoft Entra Workload ID. For more information, see [Azure AD Workload Identity](https://azure.github.io/azure-workload-identity/docs/).
33
32
34
33
## Set up a workload identity
35
34
@@ -62,7 +61,7 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
62
61
To enable workload identity and oidc-issuer, run the following command.
63
62
64
63
```azurecli
65
-
az aks update -g $RESOURCE_GROUP -n $AKS_CLUSTER_NAME --enable-managed-identity --enable-oidc-issuer
64
+
az aks update -g $RESOURCE_GROUP -n $AKS_CLUSTER_NAME --enable-workload-identity --enable-oidc-issuer
66
65
```
67
66
68
67
1. Store the OIDC issuer url in an environment variable to be used later.
@@ -158,6 +157,8 @@ Deploy KEDA using the following command:
158
157
159
158
```bash
160
159
helm install keda kedacore/keda --namespace keda \
0 commit comments