From: Vasu Kulkarni Date: Thu, 7 Sep 2017 01:13:39 +0000 (-0700) Subject: Add mgr create to fix single node test to reach healthy state X-Git-Tag: v13.0.1~998^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f12127751d3643488eeb18e25f8922e72ac8daa9;p=ceph.git Add mgr create to fix single node test to reach healthy state Signed-off-by: Vasu Kulkarni --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 78f82dedfa91..0cafd3f93a6c 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -597,6 +597,7 @@ def cli_test(ctx, config): branch=test_branch) + nodename new_admin = 'install {branch} --cli '.format(branch=test_branch) + nodename create_initial = 'mon create-initial ' + mgr_create = 'mgr create ' + nodename # either use create-keys or push command push_keys = 'admin ' + nodename execute_cdeploy(admin, new_mon_install, path) @@ -604,6 +605,7 @@ def cli_test(ctx, config): execute_cdeploy(admin, new_osd_install, path) execute_cdeploy(admin, new_admin, path) execute_cdeploy(admin, create_initial, path) + execute_cdeploy(admin, mgr_create, path) execute_cdeploy(admin, push_keys, path) for i in range(3):