From 432036d8b34e5996efa64af18dd0ab7bcf5b499f Mon Sep 17 00:00:00 2001 From: barrfalk Date: Thu, 11 Jul 2024 23:24:52 -0700 Subject: [PATCH] Update deployment.yaml --- .../frontend/templates/deployment.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/charts/app/templates/frontend/templates/deployment.yaml b/charts/app/templates/frontend/templates/deployment.yaml index 0647cee79..ce64159e9 100644 --- a/charts/app/templates/frontend/templates/deployment.yaml +++ b/charts/app/templates/frontend/templates/deployment.yaml @@ -40,6 +40,29 @@ spec: value: "http://{{ .Release.Name }}-backend" - name: LOG_LEVEL value: "info" + - name: KEYCLOAK_URL + valueFrom: + secretKeyRef: + name: react-app + key: keycloak-url + - name: COMS_URL + valueFrom: + secretKeyRef: + name: react-app + key: coms-url + - name: COMS_BUCKET + valueFrom: + secretKeyRef: + name: react-app + key: coms-bucket + - name: SHOW_EXPERIMENTAL_FEATURES + valueFrom: + secretKeyRef: + name: react-app + key: show-experimental-features + - name: ENVIRONMENT_NAME + value: "production" + ports: - name: http containerPort: 3000