mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +00:00
Fix loading environment variables for backend (#1591)
This commit is contained in:
parent
be37d1dc3a
commit
25f4f3bd54
@ -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.0
|
version: 5.0.1
|
||||||
kubeVersion: ">=1.16.0-0"
|
kubeVersion: ">=1.16.0-0"
|
||||||
keywords:
|
keywords:
|
||||||
- grocy
|
- grocy
|
||||||
@ -22,7 +22,5 @@ dependencies:
|
|||||||
version: 4.4.2
|
version: 4.4.2
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |-
|
artifacthub.io/changes: |-
|
||||||
- kind: changed
|
- kind: fixed
|
||||||
description: Removed `postgresql` chart dependency.
|
description: Fixed loading API environment variables.
|
||||||
- kind: changed
|
|
||||||
description: "**BREAKING** Updated mealie to v1.0.0beta-2. Please check the application documentation for upgrade steps."
|
|
||||||
|
@ -14,6 +14,10 @@ additionalContainers:
|
|||||||
env:
|
env:
|
||||||
- name: API_PORT
|
- name: API_PORT
|
||||||
value: "9000"
|
value: "9000"
|
||||||
|
{{- range $name, $value := .Values.api.env }}
|
||||||
|
- name: {{ $name }}
|
||||||
|
value: {{ $value }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: api
|
- name: api
|
||||||
containerPort: 9000
|
containerPort: 9000
|
||||||
|
Loading…
Reference in New Issue
Block a user