From fb8524f4014ef7bdb0b70c77f84f25ef12f11d7c Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Fri, 10 Mar 2023 16:01:19 +0100 Subject: [PATCH] ceph-volume: update the OS before deploying Ceph ceph-volume tests are failing, OSDs never get up and running. For some reason, updating the OS early in the testing workflow addresses that issue in the CI. -- to be continued ... -- Signed-off-by: Guillaume Abrioux (cherry picked from commit 663c914c59873f433a5512aca0ebc4b4a7ef1fd3) --- .../ceph_volume/tests/functional/playbooks/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml b/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml index e5185e3fcdfc7..e45a41d22eeee 100644 --- a/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml +++ b/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml @@ -87,6 +87,11 @@ set_fact: is_atomic: '{{ stat_ostree.stat.exists }}' + - name: update the system + command: dnf update -y + changed_when: false + when: not is_atomic | bool + tasks: - import_role: name: ceph-defaults -- 2.39.5