From 457604bc0e044701a5d83d7ee1d3de32c71e7c26 Mon Sep 17 00:00:00 2001 From: Rebecca Valente Date: Tue, 23 Sep 2025 11:26:05 -0300 Subject: [PATCH] (1.0.7) devops: fix helm scoping in ingress: use $.values for fullname and service.port --- charts/wordpress-helm/templates/ingress.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/wordpress-helm/templates/ingress.yaml b/charts/wordpress-helm/templates/ingress.yaml index 5db60a4..674698e 100644 --- a/charts/wordpress-helm/templates/ingress.yaml +++ b/charts/wordpress-helm/templates/ingress.yaml @@ -33,9 +33,9 @@ spec: pathType: {{ .pathType }} backend: service: - name: {{ .Values.fullname }} + name: {{ $.Values.fullname }} port: - number: {{ .Values.service.port }} + number: {{ $.Values.service.port }} {{- end }} {{- end }} {{- end }}