mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/traefik] switch service protocols to where SSL is configured first (#19441)
* switch service protocols to where SSL is configured first Signed-off-by: JaMile Jackson <jamile.jackson@nielsen.com> * bump version Signed-off-by: JaMile Jackson <jamile.jackson@nielsen.com> * bump traefik chart version Signed-off-by: JaMile Jackson <jamile.jackson@nielsen.com> * fix typo Signed-off-by: JaMile Jackson <jamile.jackson@nielsen.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
f9900ca25f
commit
a3000caa21
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: traefik
|
||||
version: 1.85.0
|
||||
version: 1.85.1
|
||||
appVersion: 1.7.20
|
||||
description: A Traefik based Kubernetes ingress controller with Let's Encrypt support
|
||||
keywords:
|
||||
|
||||
@@ -40,12 +40,6 @@ spec:
|
||||
app: {{ template "traefik.name" . }}
|
||||
release: {{ .Release.Name }}
|
||||
ports:
|
||||
- port: 80
|
||||
name: http
|
||||
{{- if (and (eq .Values.serviceType "NodePort") (not (empty .Values.service.nodePorts.http)))}}
|
||||
nodePort: {{ .Values.service.nodePorts.http }}
|
||||
{{- end }}
|
||||
targetPort: http
|
||||
- port: 443
|
||||
name: https
|
||||
{{- if (and (eq .Values.serviceType "NodePort") (not (empty .Values.service.nodePorts.https)))}}
|
||||
@@ -55,4 +49,10 @@ spec:
|
||||
targetPort: httpn
|
||||
{{- else }}
|
||||
targetPort: https
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
- port: 80
|
||||
name: http
|
||||
{{- if (and (eq .Values.serviceType "NodePort") (not (empty .Values.service.nodePorts.http)))}}
|
||||
nodePort: {{ .Values.service.nodePorts.http }}
|
||||
{{- end }}
|
||||
targetPort: http
|
||||
|
||||
Reference in New Issue
Block a user