From 9308a52f47fac83830c14663e7c587ac1b8c3095 Mon Sep 17 00:00:00 2001 From: mabofu Date: Tue, 16 May 2023 15:11:17 +0800 Subject: [PATCH] fixed bug-I73I9L: The node removal disk is always in the queue --- dsms_deploy/dsms-deploy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/dsms_deploy/dsms-deploy.py b/dsms_deploy/dsms-deploy.py index 7e57a51..740f002 100755 --- a/dsms_deploy/dsms-deploy.py +++ b/dsms_deploy/dsms-deploy.py @@ -638,6 +638,7 @@ def command_init(args): run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph config set mon mon_allow_pool_delete true') run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph config set global rbd_default_features 1') run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph config set global osd_crush_update_on_start false') + run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph config set mgr mgr/devicehealth/enable_monitoring false') time.sleep(5) # give some room to start command_info('') logger.info('init dsms-storage cluster success') -- Gitee