From 91d2e28e473ec4109f2e29acb3d388da72f63ed5 Mon Sep 17 00:00:00 2001 From: Jeremy Denquin Date: Thu, 26 Dec 2024 10:13:46 +0100 Subject: [PATCH] update version --- Chart.yaml | 4 ++-- templates/webhook-worker-deployment.yaml | 6 +++--- values.yaml | 3 ++- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index c2a710c..452264b 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: '1.17.2' +appVersion: '1.17.4' description: the Lago open source billing app name: lago -version: 1.17.2 +version: 1.17.4 dependencies: - name: postgresql version: '13.2.2' diff --git a/templates/webhook-worker-deployment.yaml b/templates/webhook-worker-deployment.yaml index 41f31e3..609e921 100644 --- a/templates/webhook-worker-deployment.yaml +++ b/templates/webhook-worker-deployment.yaml @@ -102,11 +102,11 @@ spec: name: {{ .Release.Name }}-secrets key: encryptionPrimaryKey - name: DATABASE_POOL - value: 20 + value: {{ .Values.webhookWorker.rails.sidekiqConcurrency | quote }} - name: SIDEKIQ_CONCURRENCY - value: 20 + value: {{ .Values.webhookWorker.rails.sidekiqConcurrency | quote }} - name: SIDEKIQ_WEBHOOK - value: true + value: "true" - name: LAGO_LOG_LEVEL value: {{ .Values.webhookWorker.rails.logLevel | quote }} {{- with .Values.webhookWorker.extraEnv }} diff --git a/values.yaml b/values.yaml index 6c15693..e909dba 100644 --- a/values.yaml +++ b/values.yaml @@ -1,4 +1,4 @@ -version: 1.17.2 +version: 1.17.4 # Required: Set the URLs for your API and Frontend services # Replace these placeholders with the actual domain names. @@ -219,6 +219,7 @@ webhookWorker: enabled: true replicas: 1 rails: + sidekiqConcurrency: 20 env: 'production' logStdout: true logLevel: info