From 4cad4968221dab6c275fe07b43aed78b0bf894f5 Mon Sep 17 00:00:00 2001 From: Jonathan Bartlett <34320158+Jonnobrow@users.noreply.github.com> Date: Mon, 6 Jun 2022 12:59:47 +0100 Subject: [PATCH] Fix quoting of mealie environment variables (#1606) --- charts/stable/mealie/Chart.yaml | 4 ++-- charts/stable/mealie/templates/common.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/stable/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml index c88f9d98..ee7c3409 100644 --- a/charts/stable/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -3,7 +3,7 @@ apiVersion: v2 appVersion: v1.0.0beta-2 description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. name: mealie -version: 5.0.1 +version: 5.0.2 kubeVersion: ">=1.16.0-0" keywords: - grocy @@ -23,4 +23,4 @@ dependencies: annotations: artifacthub.io/changes: |- - kind: fixed - description: Fixed loading API environment variables. + description: Fixed quoting of API environment variables. diff --git a/charts/stable/mealie/templates/common.yaml b/charts/stable/mealie/templates/common.yaml index 5cdd01ee..a37cfa01 100644 --- a/charts/stable/mealie/templates/common.yaml +++ b/charts/stable/mealie/templates/common.yaml @@ -16,7 +16,7 @@ additionalContainers: value: "9000" {{- range $name, $value := .Values.api.env }} - name: {{ $name }} - value: {{ $value }} + value: {{ $value | quote }} {{- end }} ports: - name: api