From: Guillaume Abrioux Date: Thu, 8 Nov 2018 08:08:28 +0000 (+0100) Subject: tests: set pool size to 1 in ceph-override.json X-Git-Tag: v4.0.0beta1~224 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=3ac6619fb9aa0ea29041ce122b4dfac9a51fc235;p=ceph-ansible.git tests: set pool size to 1 in ceph-override.json setting this setting to 1 makes the CI covering the related code in the playbook without breaking the upgrade scenarios. Those scenarios were broken because there is a check `TASK [waiting for clean pgs...]` in rolling_update.yml, since the pool size for `cephfs_metadata` and `cephfs_data` are updated to `2` in `ceph-override.json` and there is not enough osd to honor this size, some PGs are degraded and make the mentioned check failing. Signed-off-by: Guillaume Abrioux --- diff --git a/tests/functional/centos/7/cluster/ceph-override.json b/tests/functional/centos/7/cluster/ceph-override.json index f2ec97114..d0df1fa78 100644 --- a/tests/functional/centos/7/cluster/ceph-override.json +++ b/tests/functional/centos/7/cluster/ceph-override.json @@ -8,12 +8,12 @@ { "name": "cephfs_metadata", "pgs": 8, - "size": 2 + "size": 1 }, { "name": "cephfs_data", "pgs": 8, - "size": 2 + "size": 1 } ], "ceph_mon_docker_memory_limit": "2g"