From 35c368b668b1c6d510fef630be0e821b8a62fe67 Mon Sep 17 00:00:00 2001 From: Taylor Price Date: Tue, 10 Mar 2020 20:12:55 -0700 Subject: [PATCH] missing tls from the place that matters most! --- chart/Chart.yaml | 2 +- chart/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 245c8d8..3ddfb48 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 appVersion: "1.0" description: Helm chart for fusionauth name: fusionauth -version: 0.2.2 +version: 0.2.3 diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index 836d475..c5f841f 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -70,7 +70,7 @@ spec: - name: DATABASE_ROOT_USER value: {{ .Values.database.root.user }} - name: DATABASE_URL - value: "jdbc:postgresql://{{ include "fusionauth.databaseHost" . }}:{{ .Values.database.port }}/{{ .Values.database.name }}" + value: "jdbc:postgresql://{{ include "fusionauth.databaseHost" . }}:{{ .Values.database.port }}/{{ .Values.database.name }}{{ include "fusionauth.databaseTLS" . }}" - name: FUSIONAUTH_SEARCH_SERVERS value: "{{ .Values.search.protocol }}://{{ include "fusionauth.searchLogin" . }}{{ include "fusionauth.searchHost" . }}:{{ .Values.search.port }}" {{- range $key, $value := .Values.environment }}