From 7a6d3a0e9027aaeb2aeeda136aad433c36720ae6 Mon Sep 17 00:00:00 2001 From: andresanaya21 Date: Tue, 20 May 2025 16:32:42 +0200 Subject: [PATCH] feat: add logLevel configuration for celery-beat and celery-worker in deploy_ocf_staging --- capif/templates/cd-deploy-ocf.gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/capif/templates/cd-deploy-ocf.gitlab-ci.yml b/capif/templates/cd-deploy-ocf.gitlab-ci.yml index 2131034..baa8f5c 100644 --- a/capif/templates/cd-deploy-ocf.gitlab-ci.yml +++ b/capif/templates/cd-deploy-ocf.gitlab-ci.yml @@ -250,11 +250,13 @@ deploy_ocf_staging: --set celery-beat.env.celeryModel=beat \ --set celery-beat.env.redisHost=redis \ --set celery-beat.env.redisPort=6379 \ + --set celery-beat.env.logLevel="DEBUG" \ --set celery-worker.image.repository=$CI_REGISTRY/ocf/capif/$CI_COMMIT_REF_SLUG/celery \ --set celery-worker.image.tag=$CI_COMMIT_REF_SLUG \ --set celery-worker.env.celeryModel=worker \ --set celery-worker.env.redisHost=redis \ --set celery-worker.env.redisPort=6379 \ + --set celery-worker.env.logLevel="DEBUG" \ --wait --timeout=10m --create-namespace --atomic delete_ocf_staging: -- GitLab