Create a dedicated namespace for KEDA. If the keda namespace
does not already exist, create the namespace and add the label,
monitoring-platform-access=true.
kubectl create namespace keda
kubectl label namespace keda monitoring-platform-access=true
Install KEDA by specifying the required version, for example, 2.17.2, and the
namespace that you created in the previous step.
helm install keda kedacore/keda --version 2.17.2 --namespace keda
The command deploys KEDA and its associated resources, including Custom
Resource Definitions (CRDs), into the Kubernetes cluster under the
keda namespace.
Check the keda namespace for running pods to verify a
successful deployment.