From 2795e3e295124a370d2c1aac15e31b6f8c409df2 Mon Sep 17 00:00:00 2001 From: Lars Scheibling Date: Sat, 10 Jun 2023 22:39:22 +0200 Subject: [PATCH] Fixed additionalEnv --- .gitlab-ci.yml | 2 +- Chart/templates/configmap.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b7d9f35..6ed9b1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - HELM_CHART_VERSION: "0.6.6" + HELM_CHART_VERSION: "0.6.7" stages: - deploy diff --git a/Chart/templates/configmap.yaml b/Chart/templates/configmap.yaml index 300d3a5..3b2bc8b 100644 --- a/Chart/templates/configmap.yaml +++ b/Chart/templates/configmap.yaml @@ -24,7 +24,7 @@ data: {{- end }} WP_ENV: "{{ .Values.site.environment | default "production" }}" WP_HOME: "https://{{ ( .Values.site.redirectDomain | default ( .Values.site.domain )) | replace "https://" "" | replace "http://" "" }}" - {{- if .Values.site.additional_env }} + {{- if .Values.site.additionalEnv }} {{- range $k, $v := .Values.site.additionalEnv }} {{ $k }}: {{ $v }} {{- end }}