Fix quoting of mealie environment variables (#1606)

This commit is contained in:
Jonathan Bartlett 2022-06-06 12:59:47 +01:00 committed by GitHub
parent 795f747866
commit 4cad496822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ apiVersion: v2
appVersion: v1.0.0beta-2 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. 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 name: mealie
version: 5.0.1 version: 5.0.2
kubeVersion: ">=1.16.0-0" kubeVersion: ">=1.16.0-0"
keywords: keywords:
- grocy - grocy
@ -23,4 +23,4 @@ dependencies:
annotations: annotations:
artifacthub.io/changes: |- artifacthub.io/changes: |-
- kind: fixed - kind: fixed
description: Fixed loading API environment variables. description: Fixed quoting of API environment variables.

View File

@ -16,7 +16,7 @@ additionalContainers:
value: "9000" value: "9000"
{{- range $name, $value := .Values.api.env }} {{- range $name, $value := .Values.api.env }}
- name: {{ $name }} - name: {{ $name }}
value: {{ $value }} value: {{ $value | quote }}
{{- end }} {{- end }}
ports: ports:
- name: api - name: api