Page cover

Install KEDA

To install KEDA, you need to create a namespace and a VPC first by running the following commands.

kubectl create ns keda 
nano cvpc-keda.yaml

Copy and paste the following YAML content.

apiVersion: tenants.cloudeka.ai/v1alpha2
kind: CloudekaVPC
metadata:
  name: keda
  namespace: keda
spec:
  isolate: false

After pasting the syntax, save the file by pressing Ctrl + O, then press Enter, and exit the editor by pressing Ctrl + X. The next step is to apply the KEDA configuration.

kubectl apply -f cvpc-keda.yaml

Last updated