diff --git a/k3s-tooling/templates/cert-manager.yaml b/k3s-tooling/templates/cert-manager.yaml index 69edc08..170032f 100644 --- a/k3s-tooling/templates/cert-manager.yaml +++ b/k3s-tooling/templates/cert-manager.yaml @@ -1,4 +1,4 @@ -{{- if .Values.cert-manager.enabled -}} +{{ if .Values.cert-manager.enabled }} apiVersion: argoproj.io/v1alpha1 kind: Application metadata: @@ -13,7 +13,7 @@ spec: chart: cert-manager # Chart name targetRevision: {{ .Values.cert-manager.targetRevision }} # Version of the chart (update to latest if needed) helm: - values: | + valuesObject: crds: enabled: true destination: @@ -27,4 +27,4 @@ spec: - ApplyOutOfSyncOnly=true - ServerSideApply=true - CreateNamespace=true -{{- end }} +{{ end }}