Skip to content

Commit

Permalink
[fix] charts/gundeck: reference correct value for tlsCa (#4127) (#4128)
Browse files Browse the repository at this point in the history
related to WPB-9960

Co-authored-by: Leonhardt Wille <[email protected]>
  • Loading branch information
elland and lwille authored Jul 8, 2024
1 parent b85a018 commit 3b3be5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/gundeck/templates/redis-ca-secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
heritage: "{{ .Release.Service }}"
type: Opaque
data:
ca.pem: {{ .Values.redis.tlsCa | b64enc | quote }}
ca.pem: {{ .Values.config.redis.tlsCa | b64enc | quote }}
{{- end }}
---
{{- if not (empty .Values.config.redis.additionalTlsCa) }}
Expand All @@ -26,5 +26,5 @@ metadata:
heritage: "{{ .Release.Service }}"
type: Opaque
data:
ca.pem: {{ .Values.redis.additionalTlsCa | b64enc | quote }}
ca.pem: {{ .Values.config.redis.additionalTlsCa | b64enc | quote }}
{{- end }}

0 comments on commit 3b3be5f

Please sign in to comment.