twuni / docker-registry.helm

Helm chart for a Docker registry. Successor to stable/docker-registry chart.
Apache License 2.0
323 stars 150 forks source link

Configuring tls ingress #82

Open barzog opened 2 years ago

barzog commented 2 years ago

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 }}

Can you update helm chart?

wethinkagile commented 1 year ago

Has this been PRed in the meanwhile?