🔧(helm) allow specific env var for the backend and celery deploy

We want the possibility to configure specific environment variables on
backend and celery deployment. Most of them are common but in the case
of the newly added settings DB_PSYCOPG_POOL_MIN_SIZE we want to
configure ot only on the backend deployment, not on the celery or with a
different value.
This commit is contained in:
Manuel Raynaud
2026-03-16 15:30:22 +01:00
parent ba93bcf20b
commit bcb50a5fce
6 changed files with 48 additions and 7 deletions
@@ -74,6 +74,12 @@ backend:
Y_PROVIDER_API_BASE_URL: http://impress-docs-y-provider:443/api/
Y_PROVIDER_API_KEY: my-secret
CACHES_KEY_PREFIX: "{{ now | unixEpoch }}"
django:
envVars:
WEB_CONCURRENCY: 1
DB_PSYCOPG_POOL_MIN_SIZE: 10
migrate:
command:
- "/bin/sh"