Merge pull request #33 from sirius0xdev/feat-keda-controllers

feat: Add KEDA and HTTP Add-on controllers
This commit is contained in:
sirius0xdev 2026-04-19 23:40:13 -04:00 committed by GitHub
commit 24f916fcec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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