From 6d7b73fa91e16fd726c3b63b3fbb93c8bffab810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Sun, 8 Oct 2017 17:29:32 +0200 Subject: [PATCH] ci: re-add osd_pool_default_size to 1 with the override MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If we don't do this the client will create pools with a replica 3 since osd_pool_default_size was gone in ceph-override.json. This was making switch_to_containers failing. Signed-off-by: Sébastien Han --- tests/functional/centos/7/cluster/ceph-override.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/functional/centos/7/cluster/ceph-override.json b/tests/functional/centos/7/cluster/ceph-override.json index 9a3af9436..965e361f9 100644 --- a/tests/functional/centos/7/cluster/ceph-override.json +++ b/tests/functional/centos/7/cluster/ceph-override.json @@ -1,7 +1,8 @@ { "ceph_conf_overrides": { "global": { - "osd_pool_default_pg_num": 12 + "osd_pool_default_pg_num": 12, + "osd_pool_default_size": 1 } } }