From b1fa5a0754368a6735ba40d3b31b7c23c7ba4057 Mon Sep 17 00:00:00 2001 From: Franck Kerbiriou Date: Tue, 15 Apr 2025 03:19:37 +0200 Subject: [PATCH] Fix Helm Ingress template (#7018) ### What problem does this PR solve? Fix Helm Ingress template; Trying to access a global variable within a loop Fix #6191 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) - [ ] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe): --- helm/templates/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/templates/ingress.yaml b/helm/templates/ingress.yaml index 43fbbe97d..6547b52d9 100644 --- a/helm/templates/ingress.yaml +++ b/helm/templates/ingress.yaml @@ -35,7 +35,7 @@ spec: {{- end }} backend: service: - name: {{ .Release.Name }} + name: {{ $.Release.Name }} port: name: http {{- end }}