feat: Add KEDA and KEDA HTTP Add-on controllers

This commit is contained in:
Sirius Claw 2026-04-20 03:36:34 +00:00
parent cc6dbd025a
commit e736d5f874
6 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- namespace.yaml
- repository.yaml
- release-keda.yaml
- release-http-add-on.yaml

View file

@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: keda

View file

@ -0,0 +1,21 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: keda-http-add-on
namespace: keda
spec:
interval: 1h
chart:
spec:
chart: keda-add-ons-http
version: ">= 0.8.0"
sourceRef:
kind: HelmRepository
name: kedacore
install:
createNamespace: true
crds: CreateReplace
upgrade:
crds: CreateReplace
dependsOn:
- name: keda

View file

@ -0,0 +1,19 @@
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: keda
namespace: keda
spec:
interval: 1h
chart:
spec:
chart: keda
version: ">= 2.14.0"
sourceRef:
kind: HelmRepository
name: kedacore
install:
createNamespace: true
crds: CreateReplace
upgrade:
crds: CreateReplace

View file

@ -0,0 +1,8 @@
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: kedacore
namespace: keda
spec:
interval: 1h
url: https://kedacore.github.io/charts

View file

@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base/keda