Fix invalid kind in monitoring HelmRelease

This commit is contained in:
Daniel Cosme
2026-04-21 13:13:54 -04:00
parent 4422a5e068
commit 66494a9712
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ metadata:
name: linking
namespace: linkding
resources:
- deployment.yaml
- namespace.yaml
- srv.yaml
- pvc.yaml
- deployment.yaml
@@ -9,7 +9,7 @@ spec:
chart: kube-prometheus-stack
interval: 12h0m0s
sourceRef:
kind: HelmRelease
kind: HelmRepository
name: monitoring
namespace: monitoring
version: 66.x
+1 -1
View File
@@ -65,7 +65,7 @@ func PrometheusRelease() helm.HelmRelease {
Version: root.HELM_PROMETHEUS_CHART_VERSION,
Interval: &interval,
SourceRef: helm.CrossNamespaceObjectReference{
Kind: kube.FluxHelmReleaseMeta.Kind,
Kind: kube.FluxHelmRepositoryMeta.Kind,
Name: meta.Meta().Name,
Namespace: Namespace.Name,
},