From: Sébastien Han Date: Sun, 8 Oct 2017 15:29:32 +0000 (+0200) Subject: ci: re-add osd_pool_default_size to 1 with the override X-Git-Tag: v3.0.0rc19^2~7 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=6d7b73fa91e16fd726c3b63b3fbb93c8bffab810;p=ceph-ansible.git ci: re-add osd_pool_default_size to 1 with the override 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 --- 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 } } }