From d9eca8ef4624ccec1d767d43b348efc6d2dccf0e Mon Sep 17 00:00:00 2001 From: djkhl Date: Fri, 22 Nov 2024 11:33:07 +0100 Subject: [PATCH] add end to if statement --- charts/logprep/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/logprep/templates/deployment.yaml b/charts/logprep/templates/deployment.yaml index 8964f5ea5..8cac40759 100644 --- a/charts/logprep/templates/deployment.yaml +++ b/charts/logprep/templates/deployment.yaml @@ -22,7 +22,7 @@ spec: spec: {{- if .Values.podSecurityContext.enabled }} securityContext: {{- omit .Values.podSecurityContext "enabled" | toYaml | nindent 8 }} - {{ end }} + {{- end }} imagePullSecrets: {{- if .Values.secrets.imagePullSecret }} - name: {{ .Values.secrets.imagePullSecret.name }} @@ -31,7 +31,7 @@ spec: - name: logprep {{- if .Values.conatinerSecurityContext.enabled }} securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 12 }} - {{ end }} + {{- end }} resources: {{- toYaml .Values.resources | nindent 12 }} image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}