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
1. Assign the *Monitoring Data Reader* role to the identity for your Azure Monitor workspace. This role allows the identity to read metrics from your workspace.
103
+
1. Assign the *Monitoring Data Reader* role to the identity for your Azure Monitor workspace. This role allows the identity to read metrics from your workspace. Replace the *Azure Monitor Workspace resource group* and *Azure Monitor Workspace name* with the resource group and name of the Azure Monitor workspace which is configured to collect metrics from the AKS cluster.
1. Create the KEDA namespace, then create Kubernetes service account. This service account is used by KEDA to authenticate with Azure.
113
+
1. Create the KEDA namespace, then create Kubernetes service account. This service account is used by KEDA to authenticate with Azure.
112
114
113
115
```azurecli
114
116
115
-
az aks get-credentials -n $CLUSTER_NAME -g $RESOURCE_GROUP
117
+
az aks get-credentials -n $AKS_CLUSTER_NAME -g $RESOURCE_GROUP
116
118
117
119
kubectl create namespace keda
118
120
@@ -129,13 +131,13 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
129
131
130
132
1. Check your service account by running
131
133
```bash
132
-
kubectl describe serviceaccount workload-identity-sa -n keda
134
+
kubectl describe serviceaccount $SERVICE_ACCOUNT_NAME -n keda
133
135
```
134
136
135
137
1. Establish a federated credential between the service account and the user assigned identity. The federated credential allows the service account to use the user assigned identity to authenticate with Azure.
@@ -145,7 +147,14 @@ This article walks you through the steps to integrate KEDA into your AKS cluster
145
147
146
148
KEDA can be deployed using YAML manifests, Helm charts, or Operator Hub. This article uses Helm charts. For more information on deploying KEDA, see [Deploying KEDA](https://keda.sh/docs/2.10/deploy/)
0 commit comments