Skip to content

Commit

Permalink
Merge pull request #30 from stackhpc/fix/tls-secret-names
Browse files Browse the repository at this point in the history
Use distinct names for frontend and backend ingress certs
  • Loading branch information
sd109 authored Jul 12, 2024
2 parents bb254a0 + dbcd964 commit 42ed6f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chart/templates/api/ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ spec:
tls:
- hosts:
- {{ (required "ingress.host is required when ingress.tls is true" .Values.ingress.host) | quote }}
secretName: {{ .Release.Name }}-tls
secretName: {{ .Release.Name }}-api-tls
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion chart/templates/ui/ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ spec:
tls:
- hosts:
- {{ (required "ingress.host is required when ingress.tls is true" .Values.ingress.host) | quote }}
secretName: {{ .Release.Name }}-tls
secretName: {{ .Release.Name }}-ui-tls
{{- end -}}
{{- end -}}

0 comments on commit 42ed6f6

Please sign in to comment.