From 81ae17652f9cb01d0c1634d9f06a1195a76832c3 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 1 Apr 2020 11:32:40 +0200 Subject: [PATCH] ceph-volume: update functional testing deploy.yml playbook This commit adds a call to `ceph-facts` role in the first play of this playbook. This is needed so `ceph-validate` won't fail because of following error: ``` fatal: [osd0]: FAILED! => {} MSG: 'osd_pool_default_size' is undefined ``` `osd_pool_default_size` is set in ceph-facts. Signed-off-by: Guillaume Abrioux (cherry picked from commit 5bf7cc87ec91e128bd106e101b43328cacef1c7b) --- .../ceph_volume/tests/functional/playbooks/deploy.yml | 2 ++ 1 file changed, 2 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 12bca4f323730..0c1d13f8f1a2f 100644 --- a/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml +++ b/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml @@ -90,6 +90,8 @@ tasks: - import_role: name: ceph-defaults + - import_role: + name: ceph-facts - import_role: name: ceph-validate -- 2.39.5