From 3ac1d05d50ba679eaf43332b748a95f931e382d1 Mon Sep 17 00:00:00 2001 From: davidfrickert Date: Tue, 21 May 2024 23:35:47 +0200 Subject: [PATCH] #124 - also state port protocol in deployment --- charts/common/templates/_container.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/common/templates/_container.yaml b/charts/common/templates/_container.yaml index f0649f4..5d9dcfc 100644 --- a/charts/common/templates/_container.yaml +++ b/charts/common/templates/_container.yaml @@ -19,7 +19,7 @@ ports: {{- range .Values.ports }} - name: {{ .name }} containerPort: {{ .containerPort }} - protocol: TCP + protocol: {{ if .protocol }}{{ .protocol }}{{ else }}TCP{{ end }} {{- end }} {{- end }} {{- if .Values.probe.enabled }}