From 2c55d3139709630ffb8b4969c5c9704c0af3dafa Mon Sep 17 00:00:00 2001 From: cunningpike <117583036+cunningpike@users.noreply.github.com> Date: Mon, 23 Jan 2023 13:40:55 -0500 Subject: [PATCH] Update _helpers.tpl --- chart/templates/_helpers.tpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl index d69232e..d42cc60 100644 --- a/chart/templates/_helpers.tpl +++ b/chart/templates/_helpers.tpl @@ -64,15 +64,15 @@ Create the default conf file path and filename */}} {{- define "fediblockhole.conf_file_path" -}} {{- if .Values.fediblockhole.conf_file.path }} -{{- default .Values.fediblockhole.conf_file.path }} +{{- .Values.fediblockhole.conf_file.path }} {{- else }} -{{- default "/etc/default/" }} +{{- "/etc/default/" }} {{- end }} {{- end }} {{- define "fediblockhole.conf_file_filename" -}} {{- if .Values.fediblockhole.conf_file.filename }} -{{- default .Values.fediblockhole.conf_file.filename }} +{{- .Values.fediblockhole.conf_file.filename }} {{- else }} -{{- default "fediblockhole.conf.toml" }} +{{- "fediblockhole.conf.toml" }} {{- end }} {{- end }}