> For the complete documentation index, see [llms.txt](https://docs.cloudeka.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloudeka.ai/deka-gpu/deka-gpu-autoscaling/keda-autoscalling/install-keda.md).

# Install KEDA

```
kubectl create ns keda 
```

```
nano cvpc-keda.yaml
```

Copy and paste the following YAML content.

```yaml
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.

```bash
kubectl apply -f cvpc-keda.yaml
```
