Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configuring tls ingress #82

Open
barzog opened this issue Sep 5, 2022 · 1 comment
Open

Configuring tls ingress #82

barzog opened this issue Sep 5, 2022 · 1 comment

Comments

@barzog
Copy link

barzog commented Sep 5, 2022

Currently ingress.yaml template has tls section as follows:

{{- if .Values.ingress.tls }}
tls:
{{ toYaml .Values.ingress.tls | indent 4 }}
{{- end -}}

This one expects that ingress.tls will be single value. But this should be an array and rewritten like
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
{{- range .hosts }}
- {{ . | quote }}
{{- end }}
secretName: {{ .secretName }}
{{- end }}
{{- end }}

Can you update helm chart?

@wethinkagile
Copy link

Has this been PRed in the meanwhile?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants