Celery beat changed the order of args in bodhi.

This commit is contained in:
Adam Saleh 2021-05-13 17:34:28 +02:00
parent 68982b36e0
commit 1cb04fe7b4

View file

@ -283,7 +283,7 @@ items:
- name: bodhi-celery
image: bodhi-base:latest
command: ["/usr/bin/celery"]
args: ["worker", "-A", "bodhi.server.tasks.app", "-l", "info", "-Q", "celery"]
args: ["-A", "bodhi.server.tasks.app", "worker", "-l", "info", "-Q", "celery"]
resources: {}
volumeMounts:
- name: config-volume
@ -378,7 +378,7 @@ items:
image: bodhi-base:latest
workingDir: "/tmp"
command: ["/usr/bin/celery"]
args: ["beat", "-A", "bodhi.server.tasks.app", "-l", "info"]
args: ["-A", "bodhi.server.tasks.app", "beat", "-l", "info"]
resources: {}
volumeMounts:
- name: config-volume