Celery beat changed the order of args in bodhi.
This commit is contained in:
parent
68982b36e0
commit
1cb04fe7b4
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue