diff --git a/helm/covidok/templates/_helpers.tpl b/helm/covidok/templates/_helpers.tpl
index 028efba..fde7b19 100644
--- a/helm/covidok/templates/_helpers.tpl
+++ b/helm/covidok/templates/_helpers.tpl
@@ -18,7 +18,7 @@ Expand the name of the chart.
 {{- end }}
 
 {{- define "covidok.appsettings" -}}
-{{- .Release.Name -}}-appsettings
+{{ .Release.Name -}}-appsettings
 {{- end }}
 
 {{/*
diff --git a/helm/covidok/templates/deployment.yaml b/helm/covidok/templates/deployment.yaml
index dd4789a..bb96cae 100644
--- a/helm/covidok/templates/deployment.yaml
+++ b/helm/covidok/templates/deployment.yaml
@@ -42,7 +42,7 @@ spec:
       volumes:
         - name: appsettings
           configMap:
-            name: {{- include "covidok.appsettings" . }}
+            name: {{ include "covidok.appsettings" . }}
       {{- with .Values.nodeSelector }}
       nodeSelector:
         {{- toYaml . | nindent 8 }}