From: Sage Weil Date: Thu, 3 Aug 2017 16:09:42 +0000 (-0400) Subject: qa/tasks/ceph: enable rbd on rbd pool X-Git-Tag: ses5-milestone10~3^2~8^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F16794%2Fhead;p=ceph.git qa/tasks/ceph: enable rbd on rbd pool Signed-off-by: Sage Weil --- diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index 05c4c7d90abf..daa8e4856454 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -342,6 +342,13 @@ def create_rbd_pool(ctx, config): mon_remote.run( args=['sudo', 'ceph', '--cluster', cluster_name, 'osd', 'pool', 'create', 'rbd', '8']) + mon_remote.run( + args=[ + 'sudo', 'ceph', '--cluster', cluster_name, + 'osd', 'pool', 'application', 'enable', + 'rbd', 'rbd', '--yes-i-really-mean-it' + ], + check_status=False) yield @contextlib.contextmanager