From: Vasu Kulkarni Date: Tue, 10 Jan 2017 23:43:12 +0000 (-0800) Subject: use the create option during instantiation X-Git-Tag: v11.2.0~3^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F12969%2Fhead;p=ceph.git use the create option during instantiation Signed-off-by: Vasu Kulkarni --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 5cde20404be3..44fb6c194155 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -403,9 +403,7 @@ def build_ceph_cluster(ctx, config): if mds_nodes: log.info('Configuring CephFS...') - ceph_fs = Filesystem(ctx) - if not ceph_fs.legacy_configured(): - ceph_fs.create() + ceph_fs = Filesystem(ctx, create=True) elif not config.get('only_mon'): raise RuntimeError( "The cluster is NOT operational due to insufficient OSDs")