From 03f47e29c88cae9bdb880edaa0d67d82ac8cdcf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Mon, 9 Feb 2026 17:59:14 +0100 Subject: [PATCH] fix(helm): gke overriding HINDSIGHT_API_PORT (#328) --- helm/hindsight/templates/api-deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helm/hindsight/templates/api-deployment.yaml b/helm/hindsight/templates/api-deployment.yaml index dc088d6d..fc81ebd4 100644 --- a/helm/hindsight/templates/api-deployment.yaml +++ b/helm/hindsight/templates/api-deployment.yaml @@ -60,6 +60,9 @@ spec: - name: HINDSIGHT_API_WORKER_ENABLED value: "false" {{- end }} + {{- /* Explicitly set port to override K8s service discovery env var (HINDSIGHT_API_PORT) */}} + - name: HINDSIGHT_API_PORT + value: {{ .Values.api.service.targetPort | quote }} {{- range $key, $value := .Values.api.env }} - name: {{ $key }} value: {{ $value | quote }}