From 76e9b635ad30fdb7e3bddabccc2ca0ba4b2f6f69 Mon Sep 17 00:00:00 2001 From: Praveen Perera Date: Thu, 18 Jan 2024 17:12:18 -0600 Subject: [PATCH] Fix typo --- charts/consumer/templates/deployment.yaml | 2 +- charts/consumer/templates/service.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/consumer/templates/deployment.yaml b/charts/consumer/templates/deployment.yaml index 16f06a2..a5f0fed 100644 --- a/charts/consumer/templates/deployment.yaml +++ b/charts/consumer/templates/deployment.yaml @@ -123,7 +123,7 @@ spec: {{- end }} {{- if .Values.service.customPorts }} ports: - {{- range $port := .Value.service.customPorts }} + {{- range $port := .Values.service.customPorts }} - name: {{ $port.name }} containerPort: {{ default $port.targetPort $port.containerPort }} protocol: {{ default "TCP" $port.protocol }} diff --git a/charts/consumer/templates/service.yaml b/charts/consumer/templates/service.yaml index 07869eb..a71ceee 100644 --- a/charts/consumer/templates/service.yaml +++ b/charts/consumer/templates/service.yaml @@ -20,7 +20,7 @@ spec: type: {{ .Values.service.type }} {{- if .Values.service.customPorts }} ports: - {{- range $port := .Value.service.customPorts }} + {{- range $port := .Values.service.customPorts }} - name: {{ $port.name }} port: {{ $port.port }} protocol: {{ default "TCP" $port.protocol }}