Ceph: also check ceph-mgr (#973)

In the ceph lowlevel test, also check for ceph-mgr process and
service.
This commit is contained in:
Peter Sabaini
2022-10-27 13:46:08 +02:00
committed by GitHub
parent c8ae6cdc55
commit 74bca90a6f
+2 -1
View File
@@ -62,6 +62,7 @@ class CephLowLevelTest(test_utils.OpenStackBaseTest):
# Process name and quantity of processes to expect on each unit
ceph_mon_processes = {
'ceph-mon': 1,
'ceph-mgr': 1,
}
ceph_osd_processes = {
@@ -90,7 +91,7 @@ class CephLowLevelTest(test_utils.OpenStackBaseTest):
"""
logging.info('Checking ceph-osd and ceph-mon services...')
services = {}
ceph_services = ['ceph-mon']
ceph_services = ['ceph-mon', 'ceph-mgr']
services['ceph-osd/0'] = ['ceph-osd']
services['ceph-mon/0'] = ceph_services