From 2cc0d71b89f36df49af312e9dfe6b5c7d6357dc7 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Fri, 13 Feb 2026 09:31:51 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(helm)=20use=20celery=20resources?= =?UTF-8?q?=20instead=20of=20backend=20resources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In the celery deployment, the backend resources are used and not the one from the celery values. --- CHANGELOG.md | 1 + src/helm/impress/templates/celery_worker_deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fe6a3d5..af5474aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ and this project adheres to ### Fixed - 🐛(frontend) fix broadcast store sync #1846 +- 🐛(helm) use celery resources instead of backend resources ## [v4.5.0] - 2026-01-28 diff --git a/src/helm/impress/templates/celery_worker_deployment.yaml b/src/helm/impress/templates/celery_worker_deployment.yaml index 3fc278b0..15753db2 100644 --- a/src/helm/impress/templates/celery_worker_deployment.yaml +++ b/src/helm/impress/templates/celery_worker_deployment.yaml @@ -73,7 +73,7 @@ spec: startupProbe: {{- include "impress.probes.abstract" (merge .Values.backend.celery.probes.startup (dict "targetPort" .Values.backend.service.targetPort )) | nindent 12 }} {{- end }} - {{- with .Values.backend.resources }} + {{- with .Values.backend.celery.resources }} resources: {{- toYaml . | nindent 12 }} {{- end }}