Compare commits

...

1 Commits

Author SHA1 Message Date
Jacques ROUSSEL 6a23904c8c 🔧(helm) Add support for configuring multiple hosts 2025-03-05 15:57:56 +01:00
2 changed files with 22 additions and 0 deletions
@@ -40,5 +40,10 @@ satosa:
ingress:
enabled: true
host: oidc2fer.127.0.0.1.nip.io
tls:
additional:
- hosts:
- oidc2fer2.127.0.0.1.nip.io
secretName: oidc2fer2-tls
annotations:
nginx.ingress.kubernetes.io/proxy-buffer-size: 128k
+17
View File
@@ -44,5 +44,22 @@ spec:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- end }}
{{- range .Values.ingress.tls.additional }}
{{- range .hosts }}
- host: {{ . | quote }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ include "oidc2fer.satosa.fullname" $ }}
port:
number: {{ $.Values.satosa.service.port }}
{{- with $.Values.ingress.customBackends }}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}