diff --git a/CHANGELOG.md b/CHANGELOG.md index 247c208a..bad8f245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ and this project adheres to ### Fixed - 🛂(backend) reject user access tokens on the API +- 🩹(helm) fix Helm ingress rendering when passing multiple hosts ## [1.21.0] - 2026-06-15 diff --git a/src/helm/meet/templates/ingress_posthog.yaml b/src/helm/meet/templates/ingress_posthog.yaml index 2b537886..738d7718 100644 --- a/src/helm/meet/templates/ingress_posthog.yaml +++ b/src/helm/meet/templates/ingress_posthog.yaml @@ -72,11 +72,11 @@ spec: backend: {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} service: - name: {{ include "meet.posthog.fullname" . }}-proxy + name: {{ include "meet.posthog.fullname" $ }}-proxy port: number: {{ $.Values.posthog.service.port }} {{- else }} - serviceName: {{ include "meet.posthog.fullname" . }}-proxy + serviceName: {{ include "meet.posthog.fullname" $ }}-proxy servicePort: {{ $.Values.posthog.service.port }} {{- end }} {{- with $.Values.posthog.assetsService.customBackends }} diff --git a/src/helm/meet/templates/ingress_posthog_assets.yaml b/src/helm/meet/templates/ingress_posthog_assets.yaml index abbd5e10..4fb8040b 100644 --- a/src/helm/meet/templates/ingress_posthog_assets.yaml +++ b/src/helm/meet/templates/ingress_posthog_assets.yaml @@ -72,11 +72,11 @@ spec: backend: {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} service: - name: {{ include "meet.posthog.fullname" . }}-assets-proxy + name: {{ include "meet.posthog.fullname" $ }}-assets-proxy port: number: {{ $.Values.posthog.assetsService.service.port }} {{- else }} - serviceName: {{ include "meet.posthog.fullname" . }}-assets-proxy + serviceName: {{ include "meet.posthog.fullname" $ }}-assets-proxy servicePort: {{ $.Values.posthog.assetsService.service.port }} {{- end }} {{- with $.Values.posthog.assetsService.customBackends }}