From 5ca6eba7649891e8d9e3ea06eb162ce45810b85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Tue, 17 Nov 2020 22:36:51 +0100 Subject: [PATCH] fix(helm): add sentry options --- charts/listory/templates/deployment.yaml | 6 +++++- charts/listory/values.yaml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/charts/listory/templates/deployment.yaml b/charts/listory/templates/deployment.yaml index d94df0e..33cd8ee 100644 --- a/charts/listory/templates/deployment.yaml +++ b/charts/listory/templates/deployment.yaml @@ -53,7 +53,11 @@ spec: key: spotify-client-secret - name: SPOTIFY_USER_FILTER value: {{ .Values.spotify.userFilter }} - + + - name: SENTRY_ENABLED + value: {{ .Values.sentry.enabled }} + - name: SENTRY_DSN + value: {{ .Values.sentry.dsn }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} ports: diff --git a/charts/listory/values.yaml b/charts/listory/values.yaml index b3b2d46..c2a7269 100644 --- a/charts/listory/values.yaml +++ b/charts/listory/values.yaml @@ -77,4 +77,8 @@ spotify: userFilter: auth: - jwtSecret: \ No newline at end of file + jwtSecret: + +sentry: + enabled: false + dsn: "" \ No newline at end of file