From 5f0966ff5271d909f9c232e97015ae3bb5a1a328 Mon Sep 17 00:00:00 2001 From: Werner Dijkerman Date: Thu, 19 Dec 2024 16:55:44 +0100 Subject: [PATCH] Added missing port for tls --- charts/gxf/templates/deployment.yaml | 5 +++++ charts/gxf/templates/service.yaml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/charts/gxf/templates/deployment.yaml b/charts/gxf/templates/deployment.yaml index 89eac72..36676c5 100644 --- a/charts/gxf/templates/deployment.yaml +++ b/charts/gxf/templates/deployment.yaml @@ -92,6 +92,11 @@ spec: name: http protocol: TCP {{- end }} + {{- if .Values.httpsConnector.enabled }} + - containerPort: 8443 + name: https + protocol: TCP + {{- end }} {{- range .Values.extraPorts }} - containerPort: {{ .port }} name: {{ .name }} diff --git a/charts/gxf/templates/service.yaml b/charts/gxf/templates/service.yaml index 3738e5a..e1d2be0 100644 --- a/charts/gxf/templates/service.yaml +++ b/charts/gxf/templates/service.yaml @@ -12,6 +12,11 @@ spec: port: 443 targetPort: https {{- end }} + {{- if .Values.httpsConnector.enabled }} + - name: https + port: 8443 + targetPort: https + {{- end }} {{- range .Values.extraServicePorts }} - name: {{ $.Release.Name }}-{{ .name }} port: {{ .port }}