From 7269d4f793e8b80802fd6c184151d95508d4bc7d Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Fri, 1 May 2026 18:47:20 +0100 Subject: [PATCH] fix(helm): supervisor OTLP endpoint resolves cross-namespace --- hosting/k8s/helm/templates/supervisor.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosting/k8s/helm/templates/supervisor.yaml b/hosting/k8s/helm/templates/supervisor.yaml index ee3a1580b7a..11fd7a7f6d9 100644 --- a/hosting/k8s/helm/templates/supervisor.yaml +++ b/hosting/k8s/helm/templates/supervisor.yaml @@ -237,7 +237,7 @@ spec: value: {{ .Values.supervisor.config.debug | quote }} # OTEL - name: OTEL_EXPORTER_OTLP_ENDPOINT - value: "http://{{ include "trigger-v4.fullname" . }}-webapp:{{ .Values.webapp.service.port }}/otel" + value: "http://{{ include "trigger-v4.fullname" . }}-webapp.{{ .Release.Namespace }}.svc.cluster.local:{{ .Values.webapp.service.port }}/otel" {{- with .Values.supervisor.extraEnvVars }} {{- toYaml . | nindent 12 }} {{- end }}