mirror of https://github.com/ceph/ceph-ansible.git
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
parent
1f4cf61058
commit
30cec03ae7
|
@ -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": [
|
||||||
|
|
Loading…
Reference in New Issue