From 0682e110d2397457f456e0380e6dac6e20366bf5 Mon Sep 17 00:00:00 2001 From: Tommy Date: Sat, 16 Dec 2023 19:21:38 +0100 Subject: [PATCH] fix(dispatch) correct init command after manual test --- charts/dispatch/templates/web-deployment.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/dispatch/templates/web-deployment.yaml b/charts/dispatch/templates/web-deployment.yaml index b53dd4b..052d0ed 100644 --- a/charts/dispatch/templates/web-deployment.yaml +++ b/charts/dispatch/templates/web-deployment.yaml @@ -28,14 +28,15 @@ spec: value: "{{ .Values.postgres.port }}" - name: DATABASE_NAME value: "{{ .Values.postgres.database_name }}" - envFrom: + envFrom: &envFrom - secretRef: name: {{ .Values.envFromSecret }} - + - name: web-plugin-install image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" command: ["dispatch", "plugins", "install"] env: *dispatchEnv + envFrom: *envFrom containers: - name: web