From 5d34ed14491cd649fd9820a872259947c08c5920 Mon Sep 17 00:00:00 2001 From: xstar97 <9399967+xstar97@users.noreply.github.com> Date: Thu, 2 Feb 2023 17:49:09 -0500 Subject: [PATCH] fix(gitea) add quotes to pass and user. (#6814) * fix(gitea) add quotes to pass and user. * remov non-link --------- Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --- charts/stable/gitea/templates/_configmap.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/stable/gitea/templates/_configmap.tpl b/charts/stable/gitea/templates/_configmap.tpl index b306a6046a6..ce4867d9303 100644 --- a/charts/stable/gitea/templates/_configmap.tpl +++ b/charts/stable/gitea/templates/_configmap.tpl @@ -10,8 +10,8 @@ data: GITEA_CUSTOM: "/data/gitea" GITEA_WORK_DIR: "/data" GITEA_TEMP: "/tmp/gitea" - GITEA_ADMIN_USERNAME: {{ .Values.admin.username }} - GITEA_ADMIN_PASSWORD: {{ .Values.admin.password }} + GITEA_ADMIN_USERNAME: {{ .Values.admin.username | quote }} + GITEA_ADMIN_PASSWORD: {{ .Values.admin.password | quote }} SSH_PORT: {{ .Values.service.ssh.ports.ssh.port | quote }} SSH_LISTEN_PORT: {{ .Values.service.ssh.ports.ssh.targetPort | quote }} TMPDIR: "/tmp/gitea"