diff --git a/chart/epinio/templates/server.yaml b/chart/epinio/templates/server.yaml index 102ab260..cbb145ad 100644 --- a/chart/epinio/templates/server.yaml +++ b/chart/epinio/templates/server.yaml @@ -288,6 +288,9 @@ spec: - name: INGRESS_CLASS_NAME value: "{{ .Values.ingress.ingressClassName }}" {{- end }} + {{- if .Values.extraEnv }} + {{- toYaml .Values.extraEnv | nindent 12 -}} + {{- end }} image: "{{ default .Values.image.epinio.registry (include "registry-url" .) }}{{ .Values.image.epinio.repository }}:{{ default .Chart.AppVersion .Values.image.epinio.tag }}" livenessProbe: httpGet: diff --git a/chart/epinio/values.yaml b/chart/epinio/values.yaml index b0f7214d..3ea33cf0 100644 --- a/chart/epinio/values.yaml +++ b/chart/epinio/values.yaml @@ -60,6 +60,10 @@ api: role: user workspaces: - workspace +# Extra environment variables passed to the epinio-server pod. +# extraEnv: +# - name: MY_ENV_VAR +# value: "1.0" # Minio subchart values minio: enabled: true