Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 709 Bytes

README.md

File metadata and controls

25 lines (13 loc) · 709 Bytes

KEDA

Description

Scale applications based on an Apache Kafka topic or other services that support Kafka protocol.

Install

The same as before we will install KEDA on Kubernetes with Helm. Let’s add the following Helm repo:

helm repo add kedacore https://kedacore.github.io/charts

Don’t forget to update the repository. We will install the operator in the keda namespace. Let’s create the namespace first:

kubectl create namespace keda

Finally, we can install the operator:

helm install keda kedacore/keda --namespace keda

Reference