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 for uaa
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-bogdanov committed Jun 22, 2023
1 parent d2fe1ba commit d8abdfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/allure-testops/templates/allure/uaa-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ spec:
- name: SPRING_MAIL_PROPERTIES_MAIL_SMTP_SSL_TRUST
value: {{ .Values.smtp.sslTrust | quote }}
{{- end }}
{{- 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.uaaHost}}:{{ .Values.postgresql.external.uaaPort }}"
{{- end }}
Expand Down

0 comments on commit d8abdfb

Please sign in to comment.