mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +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
|
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.
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user