From 35c9128bca8adbb569ede2ef5db666dad43df07a Mon Sep 17 00:00:00 2001 From: "Deavon M. McCaffery" Date: Thu, 19 Nov 2020 15:41:06 +0000 Subject: [PATCH] fix(charts): fix default tls port in deployment --- charts/podinfo/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/podinfo/templates/deployment.yaml b/charts/podinfo/templates/deployment.yaml index aa8d0ba..b036687 100644 --- a/charts/podinfo/templates/deployment.yaml +++ b/charts/podinfo/templates/deployment.yaml @@ -107,7 +107,7 @@ spec: {{- end }} {{- if .Values.tls.enabled }} - name: https - containerPort: {{ .Values.tls.port | default 98899 }} + containerPort: {{ .Values.tls.port | default 9899 }} protocol: TCP {{- if .Values.tls.hostPort }} hostPort: {{ .Values.tls.hostPort }}