From 3776f763b4a1d33da4ad918e27da0f04cdba8e8b Mon Sep 17 00:00:00 2001 From: Wilmar den Ouden Date: Fri, 10 Jan 2020 14:14:34 +0100 Subject: [PATCH] fix: reverts changes to sentry secrets template (#20018) Signed-off-by: wilmardo --- stable/sentry/Chart.yaml | 2 +- stable/sentry/templates/secrets.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/stable/sentry/Chart.yaml b/stable/sentry/Chart.yaml index 6c20211498..b169a83d16 100644 --- a/stable/sentry/Chart.yaml +++ b/stable/sentry/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Sentry is a cross-platform crash reporting and aggregation platform. name: sentry -version: 3.2.0 +version: 3.2.1 appVersion: 9.1.2 keywords: - debugging diff --git a/stable/sentry/templates/secrets.yaml b/stable/sentry/templates/secrets.yaml index 1f5a9fa142..3e783ca157 100644 --- a/stable/sentry/templates/secrets.yaml +++ b/stable/sentry/templates/secrets.yaml @@ -22,9 +22,9 @@ data: {{ else }} user-password: {{ randAlphaNum 16 | b64enc | quote }} {{ end }} - {{ if and (.Values.postgresql.existingSecret) (or (not .Values.postgresql.enabled) (.Values.postgresql.password)) }} + {{ if or (not .Values.postgresql.enabled) (.Values.postgresql.password) }} postgresql-password: {{ .Values.postgresql.postgresqlPassword | default "" | b64enc | quote }} {{ end }} - {{ if and (.Values.postgresql.existingSecret) (not .Values.redis.enabled) (.Values.redis.password) }} + {{ if and (not .Values.redis.enabled) (.Values.redis.password) }} redis-password: {{ .Values.redis.password | default "" | b64enc | quote }} {{ end }}