diff --git a/dsms_deploy/dsms-deploy.py b/dsms_deploy/dsms-deploy.py index 3be0d2fde625511bdd4db431c10703251bdb68fd..5658cc033b0406db9e85f8f1c222e213fc11a3d0 100755 --- a/dsms_deploy/dsms-deploy.py +++ b/dsms_deploy/dsms-deploy.py @@ -637,8 +637,10 @@ def command_init(args): run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph restful create-self-signed-cert') run_ssh_command(leader.ip, DEPLOY_USERNAME, leader.root_passwd, 'ceph restful create-key admin') 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 mon mon_warn_on_insecure_global_id_reclaim_allowed false') 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 global mon_warn_on_pool_no_app 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('')