mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
Fix quoting of mealie environment variables (#1606)
This commit is contained in:
parent
795f747866
commit
4cad496822
@ -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.
|
||||
|
@ -16,7 +16,7 @@ additionalContainers:
|
||||
value: "9000"
|
||||
{{- range $name, $value := .Values.api.env }}
|
||||
- name: {{ $name }}
|
||||
value: {{ $value }}
|
||||
value: {{ $value | quote }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: api
|
||||
|
Loading…
Reference in New Issue
Block a user