Skip to content

Commit a48826b

Browse files
committed
feat: add support for optional TLS secret in ingress configuration
1 parent 8a38cb1 commit a48826b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

charts/templates/ingress.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,7 @@ spec:
5454
tls:
5555
- hosts:
5656
- {{ .Values.ingress.host }}
57-
{{ end }}
57+
{{- if .Values.ingress.tlsSecretName }}
58+
secretName: {{ .Values.ingress.tlsSecretName }}
59+
{{- end }}
60+
{{ end }}

0 commit comments

Comments
 (0)