Skip to content

Commit

Permalink
chore(helm): make TLS secret name configurable and optional
Browse files Browse the repository at this point in the history
Signed-off-by: Clément Nussbaumer <clement.nussbaumer@postfinance.ch>
  • Loading branch information
clementnuss committed Jul 23, 2024
1 parent f5f9d0c commit 943bf66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion helm/kubenurse/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,7 @@ spec:
tls:
- hosts:
- {{ .Values.ingress.url }}
secretName: kubenurse-ingress-tls
{{- with .Values.ingress.tlsSecretName }}
secretName: {{ . }}
{{- end -}}
{{- end -}}
1 change: 1 addition & 0 deletions helm/kubenurse/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,6 @@ ingress:
enabled: true
className: nginx
annotations: {}
tlsSecretName: ""
# KUBENURSE_INGRESS_URL
url: dummy-kubenurse.example.com

0 comments on commit 943bf66

Please sign in to comment.