From d059493c8875364b1ba35c7caf012533a284049c Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Thu, 25 Jan 2024 12:35:13 +0100 Subject: [PATCH] docker-compose: use toml config file for scheduler-lava Commit 6169407 ("docker-compose: provide kernelci.toml as settings file") changed all services to use `kernelci.toml` instead of `kernelci.conf`, except for `scheduler-lava`. This leads to the corresponding container to exit with a "File not found" error unless a `kernelci.conf` file is also present in the `config/` dir. Signed-off-by: Arnaud Ferraris --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 44154cfba..9aa81e4d5 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -61,7 +61,7 @@ services: container_name: 'kernelci-pipeline-scheduler-lava' command: - './pipeline/scheduler.py' - - '--settings=${KCI_SETTINGS:-/home/kernelci/config/kernelci.conf}' + - '--settings=${KCI_SETTINGS:-/home/kernelci/config/kernelci.toml}' - 'loop' - '--runtimes' - 'lava-collabora'