From 04c1d75582a779f4c59faa6733b6ef5db44c6212 Mon Sep 17 00:00:00 2001 From: Johnathan Kupferer Date: Fri, 26 Jul 2024 18:05:42 -0400 Subject: [PATCH] Fix error in replicationsources template --- helm/replik8s/templates/replicationsources.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/replik8s/templates/replicationsources.yaml b/helm/replik8s/templates/replicationsources.yaml index dd6a687..0c909a3 100644 --- a/helm/replik8s/templates/replicationsources.yaml +++ b/helm/replik8s/templates/replicationsources.yaml @@ -1,4 +1,4 @@ -{{- range $name, $spec := .Values.replicationsources }} +{{- range $name, $spec := .Values.replicationSources }} --- apiVersion: replik8s.rhpds.redhat.com/v1 kind: ReplicationSource @@ -7,5 +7,5 @@ metadata: labels: {{- include "replik8s.labels" $ | nindent 4 }} spec: - {{ $spec | toYaml | nindent 2 }} + {{- $spec | toYaml | nindent 2 }} {{- end }}