From f70404df27b3a796cb1a25c2f48fd1607e0fa809 Mon Sep 17 00:00:00 2001 From: Bruce Schultz Date: Tue, 19 Mar 2024 13:57:31 +0100 Subject: [PATCH] build(k8s): update env variables in helm chart build_image --- helm/gateway/templates/gateway-deployment.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/helm/gateway/templates/gateway-deployment.yaml b/helm/gateway/templates/gateway-deployment.yaml index 15f9f88..a24103e 100644 --- a/helm/gateway/templates/gateway-deployment.yaml +++ b/helm/gateway/templates/gateway-deployment.yaml @@ -28,14 +28,22 @@ spec: - containerPort: 5000 env: - name: API_CLIENT_ID - value: "api-client" # To be replaced # To be replaced + value: "api-client" # To be replaced + - name: API_CLIENT_SECRET + value: "clientSecret" # Only needs to be filled in if using the /token ep - name: IDP_URL value: "https://idp.provider/" # To be replaced - name: IDP_REALM value: "flame" # To be replaced - name: RESULTS_SERVICE_URL - value: "https://results.service.de/" # To be replaced + value: "https://results.service.de/" # To be properly filled in - name: HUB_SERVICE_URL - value: "https://central.hub.service.de/" # To be replaced + value: "https://api.privateaim.net" + - name: HUB_AUTH_SERVICE_URL + value: "https://auth.privateaim.net" - name: K8S_API_KEY - value: "apiSecret" # To be replaced + value: "apiSecret" # To be properly filled in + - name: HUB_USERNAME + value: "thehubusername" # To be properly filled in + - name: HUB_PASSWORD + value: "thehubpassword" # To be properly filled in