]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
Add mgr create to fix single node test to reach healthy state 17536/head
authorVasu Kulkarni <vasu@redhat.com>
Thu, 7 Sep 2017 01:13:39 +0000 (18:13 -0700)
committerVasu Kulkarni <vasu@redhat.com>
Thu, 7 Sep 2017 01:13:39 +0000 (18:13 -0700)
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
qa/tasks/ceph_deploy.py

index 78f82dedfa91fd3ae1a94ac42a1f2a112d1baf3a..0cafd3f93a6c8d3d5d46a3f6b454981fd48cce3a 100644 (file)
@@ -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):