mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
26 lines
573 B
YAML
26 lines
573 B
YAML
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: HelmRepository
|
|
metadata:
|
|
name: '{{ .Release.Name }}-falco'
|
|
spec:
|
|
interval: 1h
|
|
url: https://falcosecurity.github.io/charts
|
|
|
|
---
|
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: '{{ .Release.Name }}-falco'
|
|
spec:
|
|
chart:
|
|
spec:
|
|
chart: falco
|
|
reconcileStrategy: ChartVersion
|
|
sourceRef:
|
|
apiVersion: source.toolkit.fluxcd.io/v1
|
|
kind: HelmRepository
|
|
name: '{{ .Release.Name }}-falco'
|
|
namespace: '{{ .Release.Namespace }}'
|
|
interval: 1h
|
|
values: {}
|