Skip to content

Commit

Permalink
Added missing port for tls
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-wasabi committed Dec 19, 2024
1 parent 92ddf27 commit 5f0966f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions charts/gxf/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
5 changes: 5 additions & 0 deletions charts/gxf/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 5f0966f

Please sign in to comment.