From c8337de3a885fc86a08a9be329a60c0846e52d62 Mon Sep 17 00:00:00 2001 From: madestreel Date: Fri, 15 May 2026 15:36:44 +0200 Subject: [PATCH] feat: add extraEnvs to helm chart to allow config override (#45) Co-authored-by: Maxime de Streel --- helm/garage-ui/templates/deployment.yaml | 3 +++ helm/garage-ui/values.yaml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/helm/garage-ui/templates/deployment.yaml b/helm/garage-ui/templates/deployment.yaml index 8b8c61b..47c24a5 100644 --- a/helm/garage-ui/templates/deployment.yaml +++ b/helm/garage-ui/templates/deployment.yaml @@ -81,6 +81,9 @@ spec: key: admin-password {{- end }} {{- end }} + {{- if .Values.extraEnvs }} + {{- toYaml .Values.extraEnvs | nindent 8 }} + {{- end }} {{- if .Values.livenessProbe.enabled }} livenessProbe: httpGet: diff --git a/helm/garage-ui/values.yaml b/helm/garage-ui/values.yaml index 05d4b09..68c25a8 100644 --- a/helm/garage-ui/values.yaml +++ b/helm/garage-ui/values.yaml @@ -12,6 +12,8 @@ imagePullSecrets: [] nameOverride: "" fullnameOverride: "" +extraEnvs: [] + config: server: host: "0.0.0.0"