
- Add is_ceph_healthy() - Add wait_for_ceph_health_status() - Add get_ceph_osd_count() - Add get_ceph_mon_count() - Add unit_tests ceph_s_table_parser_test.py Change-Id: Ibda00d122a704d8741deb15be0b53afcf2d6654d Signed-off-by: ppeng <peng.peng@windriver.com>
17 lines
276 B
Python
17 lines
276 B
Python
class CephIOObject:
|
|
"""
|
|
Object to hold the values of Ceph IO Object
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.client: str = ""
|
|
|
|
def get_client(self) -> str:
|
|
"""
|
|
Getter for client
|
|
|
|
Returns: client
|
|
|
|
"""
|
|
return self.client
|