From 0e6e4a9dbb3562f44804332afcb00a9a075b6326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyulai=20D=C3=A1niel?= Date: Sun, 22 Nov 2020 13:29:38 -0500 Subject: [PATCH] Fix Helm chart --- helm/covidok/templates/_helpers.tpl | 2 +- helm/covidok/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 }}