From: Vasu Kulkarni Date: Fri, 7 Apr 2017 18:27:52 +0000 (-0700) Subject: push keys on node using admin command X-Git-Tag: v12.0.3~92^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=73cccd411526488a89a55b7d2ab968d7f1df287e;p=ceph.git push keys on node using admin command will test admin command and is now needed due to create-keys change Signed-off-by: Vasu Kulkarni --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 44fb6c194155..8198a0463b85 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -571,10 +571,13 @@ def cli_test(ctx, config): branch=test_branch) + nodename new_admin = 'install {branch} --cli '.format(branch=test_branch) + nodename create_initial = 'mon create-initial ' + # either use create-keys or push command + push_keys = 'admin ' + nodename execute_cdeploy(admin, new_mon_install, path) execute_cdeploy(admin, new_osd_install, path) execute_cdeploy(admin, new_admin, path) execute_cdeploy(admin, create_initial, path) + execute_cdeploy(admin, push_keys, path) for i in range(3): zap_disk = 'disk zap ' + "{n}:{d}".format(n=nodename, d=devs[i])