From 825429658bdbe3bb09a6e5dc79116f08b0b38c1f Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Wed, 4 Dec 2019 12:12:05 -0500 Subject: [PATCH] tests: reduce max_mds from 3 to 2 Having max_mds value equals to the number of mds nodes generates a warning in the ceph cluster status: cluster: id: 6d3e49a4-ab4d-4e03-a7d6-58913b8ec00a' health: HEALTH_WARN' insufficient standby MDS daemons available' (...) services: mds: cephfs:3 {0=mds1=up:active,1=mds0=up:active,2=mds2=up:active}' Let's use 2 active and 1 standby mds. Signed-off-by: Dimitri Savineau (cherry picked from commit 4a6d19dae296969954e5101e9bd53443fddde03d) --- tests/functional/all_daemons/container/group_vars/all | 2 +- tests/functional/all_daemons/group_vars/all | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/all_daemons/container/group_vars/all b/tests/functional/all_daemons/container/group_vars/all index 9f672cc26..44f030890 100644 --- a/tests/functional/all_daemons/container/group_vars/all +++ b/tests/functional/all_daemons/container/group_vars/all @@ -37,4 +37,4 @@ openstack_cinder_pool: openstack_pools: - "{{ openstack_glance_pool }}" - "{{ openstack_cinder_pool }}" -mds_max_mds: 3 \ No newline at end of file +mds_max_mds: 2 diff --git a/tests/functional/all_daemons/group_vars/all b/tests/functional/all_daemons/group_vars/all index 6504f0008..a581917c3 100644 --- a/tests/functional/all_daemons/group_vars/all +++ b/tests/functional/all_daemons/group_vars/all @@ -31,4 +31,4 @@ openstack_cinder_pool: openstack_pools: - "{{ openstack_glance_pool }}" - "{{ openstack_cinder_pool }}" -mds_max_mds: 3 \ No newline at end of file +mds_max_mds: 2 -- 2.47.3