Skip to content

Commit

Permalink
fix missing customTlsIssuer for workload (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
enrichman authored Sep 14, 2023
1 parent 9ec81de commit 6b08026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chart/epinio/templates/server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ spec:
- name: EPINIO_TIMEOUT_MULTIPLIER
value: "{{ .Values.server.timeoutMultiplier }}"
- name: TLS_ISSUER
value: "{{ .Values.global.tlsIssuer }}"
value: "{{ default .Values.global.tlsIssuer .Values.global.customTlsIssuer }}"
- name: TRACE_LEVEL
value: "{{ .Values.server.traceLevel }}"
- name: CHART_VERSION
Expand Down
2 changes: 1 addition & 1 deletion chart/epinio/templates/ui/certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ spec:
- {{ .Values.global.domain }}
issuerRef:
kind: ClusterIssuer
name: {{ .Values.global.tlsIssuer }}
name: {{ default .Values.global.tlsIssuer .Values.global.customTlsIssuer }}
secretName: epinio-ui-tls
{{- end }}

0 comments on commit 6b08026

Please sign in to comment.