From fd8cdb5b458dbcbd01c4b146bb0e1343fd21b928 Mon Sep 17 00:00:00 2001 From: Sergey ITsvit Date: Tue, 15 Jun 2021 16:17:28 +0000 Subject: [PATCH 1/3] Remove extra quotation mark --- sentry/templates/configmap-sentry.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry/templates/configmap-sentry.yaml b/sentry/templates/configmap-sentry.yaml index 11ff15fb4..fb2cb20f2 100644 --- a/sentry/templates/configmap-sentry.yaml +++ b/sentry/templates/configmap-sentry.yaml @@ -40,7 +40,7 @@ data: {{ end }} {{- if .Values.github.privateKey }} github-app.private-key: |- - {{ .Values.github.privateKey | nindent 8 }}" + {{ .Values.github.privateKey | nindent 8 }} {{ end }} {{- if .Values.github.webhookSecret }} github-app.webhook-secret: {{ .Values.github.webhookSecret | quote }} From 8664de7296104f6e82e49186eccbd9f76f55ba05 Mon Sep 17 00:00:00 2001 From: Sergey ITsvit Date: Tue, 22 Jun 2021 12:35:54 +0000 Subject: [PATCH 2/3] Bump chart version --- sentry/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry/Chart.yaml b/sentry/Chart.yaml index 9f39506ae..c29296b6c 100644 --- a/sentry/Chart.yaml +++ b/sentry/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: sentry description: A Helm chart for Kubernetes type: application -version: 11.4.0 +version: 11.4.1 appVersion: 21.6.1 dependencies: - name: redis From 8e79c356e520708c4fb29bacf0f4e3bc9d600867 Mon Sep 17 00:00:00 2001 From: Sergey ITsvit Date: Mon, 5 Jul 2021 16:54:10 +0000 Subject: [PATCH 3/3] Fix formatting, remove extra newline before private key --- sentry/templates/configmap-sentry.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sentry/templates/configmap-sentry.yaml b/sentry/templates/configmap-sentry.yaml index fb2cb20f2..bf7a24c09 100644 --- a/sentry/templates/configmap-sentry.yaml +++ b/sentry/templates/configmap-sentry.yaml @@ -34,23 +34,23 @@ data: ########## {{- if .Values.github.appId }} github-app.id: {{ .Values.github.appId }} - {{ end }} + {{- end }} {{- if .Values.github.appName }} github-app.name: {{ .Values.github.appName | quote }} - {{ end }} + {{- end }} {{- if .Values.github.privateKey }} github-app.private-key: |- - {{ .Values.github.privateKey | nindent 8 }} - {{ end }} +{{ .Values.github.privateKey | indent 8 }} + {{- end }} {{- if .Values.github.webhookSecret }} github-app.webhook-secret: {{ .Values.github.webhookSecret | quote }} - {{ end }} + {{- end }} {{- if .Values.github.clientId }} github-app.client-id: {{ .Values.github.clientId | quote }} - {{ end }} + {{- end }} {{- if .Values.github.clientSecret }} github-app.client-secret: {{ .Values.github.clientSecret | quote }} - {{ end }} + {{- end }} ########## # Google #