feat: use cert in traefik

This commit is contained in:
Loïc Kalbermatter 2024-06-10 18:12:41 +02:00
parent c19271e336
commit 375e477eb7
Signed by: PulseDev
GPG Key ID: 0516267FEC58F5F3
2 changed files with 3 additions and 4 deletions

View File

@ -9,15 +9,13 @@ spec:
entryPoints: entryPoints:
- {{ $entryport }} - {{ $entryport }}
routes: routes:
{{- range $host := $.Values.traefik.hosts }} {{- range $index, $host := $.Values.traefik.hosts }}
- match: HostSNI(`{{ $host }}`) - match: HostSNI(`{{ $host }}`)
services: services:
- name: {{ include "stalwart-mail.fullname" $ }} - name: {{ include "stalwart-mail.fullname" $ }}
port: {{ $port }} port: {{ $port }}
proxyProtocol:
version: 2
{{- end }} {{- end }}
tls: tls:
passthrough: true secretName: {{ $.Values.traefik.tlsSecretName }}
{{- end }} {{- end }}
{{- end }} {{- end }}

View File

@ -34,6 +34,7 @@ ingress:
traefik: traefik:
enabled: false enabled: false
tlsSecretName: ''
hosts: [] hosts: []
ports: ports:
http: websecure http: websecure