Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Fixed SSLmode check.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-bogdanov committed Jun 16, 2023
1 parent d18df88 commit ec91263
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ spec:
value: {{ .Values.report.uploads.parseConsumers | quote }}
- name: ALLURE_UPLOAD_STORE_CONSUMERSPERQUEUE
value: {{ .Values.report.uploads.storeConsumers | quote }}
{{- if eq .Values.postgresql.external.sslMode "require" }}
{{- if or (eq .Values.postgresql.external.sslMode "require") (eq .Values.postgresql.external.sslMode "verify-ca") (eq .Values.postgresql.external.sslMode "verify-full") }}
- name: TLS_DB_ENDPOINTS
value: "{{ .Values.postgresql.external.reportHost}}:{{ .Values.postgresql.external.reportPort }}"
{{- end }}
Expand Down

0 comments on commit ec91263

Please sign in to comment.