Skip to content

Commit 02895f9

Browse files
Merge pull request #259747 from galiacheng/main
Fix bash commands in integrate-keda.md
2 parents c7f81f7 + 50095a6 commit 02895f9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/azure-monitor/containers/integrate-keda.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
2929

3030
+ Azure Kubernetes Service (AKS) cluster
3131
+ 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/).
3332

3433
## Set up a workload identity
3534

@@ -62,7 +61,7 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
6261
To enable workload identity and oidc-issuer, run the following command.
6362

6463
```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
6665
```
6766

6867
1. Store the OIDC issuer url in an environment variable to be used later.
@@ -158,6 +157,8 @@ Deploy KEDA using the following command:
158157

159158
```bash
160159
helm install keda kedacore/keda --namespace keda \
160+
--set serviceAccount.create=false \
161+
--set serviceAccount.name=keda-operator \
161162
--set podIdentity.azureWorkload.enabled=true \
162163
--set podIdentity.azureWorkload.clientId=$USER_ASSIGNED_CLIENT_ID \
163164
--set podIdentity.azureWorkload.tenantId=$TENANT_ID

0 commit comments

Comments
 (0)