From b3b71b725e07ab6d648cddb10a34d9ef25cf3e0f Mon Sep 17 00:00:00 2001 From: Nick Zenchik Date: Fri, 16 Aug 2024 09:26:12 +0300 Subject: [PATCH] [quicknode-marketplace-integration] Adding jwt secret configuration parameter --- charts/quicknode-marketplace-integration/Chart.yaml | 2 +- charts/quicknode-marketplace-integration/templates/secrets.yaml | 1 + charts/quicknode-marketplace-integration/values.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/quicknode-marketplace-integration/Chart.yaml b/charts/quicknode-marketplace-integration/Chart.yaml index 21b8d6a..5b36311 100644 --- a/charts/quicknode-marketplace-integration/Chart.yaml +++ b/charts/quicknode-marketplace-integration/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/quicknode-marketplace-integration/templates/secrets.yaml b/charts/quicknode-marketplace-integration/templates/secrets.yaml index 923a47a..2107a8d 100644 --- a/charts/quicknode-marketplace-integration/templates/secrets.yaml +++ b/charts/quicknode-marketplace-integration/templates/secrets.yaml @@ -11,3 +11,4 @@ data: BASIC_AUTH_USERNAME: {{ .Values.config.basicAuth.username | b64enc | quote }} BASIC_AUTH_PASSWORD: {{ .Values.config.basicAuth.password | b64enc | quote }} QN_SSO_SECRET: {{ .Values.config.qnSsoSecret | b64enc | quote }} + JWT_SECRET: {{ .Values.config.jwtSecret | b64enc | quote }} \ No newline at end of file diff --git a/charts/quicknode-marketplace-integration/values.yaml b/charts/quicknode-marketplace-integration/values.yaml index 3cbd384..234b6b8 100644 --- a/charts/quicknode-marketplace-integration/values.yaml +++ b/charts/quicknode-marketplace-integration/values.yaml @@ -14,6 +14,7 @@ config: username: username password: password qnSsoSecret: secret + jwtSecret: secret databaseUrl: postgresql://user:password@postgres:5432/database serviceAccount: # Specifies whether a service account should be created