From: Vasu Kulkarni Date: Tue, 10 Jan 2017 23:43:12 +0000 (-0800) Subject: use the create option during instantiation X-Git-Tag: v10.2.6~155^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8f36e23b49191f5a37184f9ee9b670025eecc4eb;p=ceph.git use the create option during instantiation Signed-off-by: Vasu Kulkarni (cherry picked from commit be836bb30960000468c79e08fb416ceefd79d7db) --- diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py index 5919e6f4176e..6eb7517d9d10 100644 --- a/qa/tasks/ceph_deploy.py +++ b/qa/tasks/ceph_deploy.py @@ -373,9 +373,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")