tests: do not fully override previous ceph_conf_overrides

We run an initial deployment with `osd_pool_default_size: 1` in
`ceph_conf_overrides`.
When re-running the playbook to test idempotency and handlers, we reset
`ceph_conf_overrides`, we must append a new value instead of just
overwritting it, otherwise, this can lead to error in the CI.

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit f290e49df8)
pull/3384/head
Guillaume Abrioux 2018-11-22 11:33:20 +01:00 committed by mergify[bot]
parent 1f4cf61058
commit 30cec03ae7
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
{ {
"ceph_conf_overrides": { "ceph_conf_overrides": {
"global": { "global": {
"osd_pool_default_pg_num": 12 "osd_pool_default_pg_num": 12,
"osd_pool_default_size": 1
} }
}, },
"cephfs_pools": [ "cephfs_pools": [