From bea9b5bb2ea847fb6766da0f1cd2a1c61e02db40 Mon Sep 17 00:00:00 2001 From: John Spray Date: Mon, 21 Mar 2016 10:13:25 +0000 Subject: [PATCH] tasks: fix ceph_deploy call to Filesystem() Fixes: #15204 Signed-off-by: John Spray --- tasks/ceph_deploy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasks/ceph_deploy.py b/tasks/ceph_deploy.py index 8b8badc77cee..bb985e294c4c 100644 --- a/tasks/ceph_deploy.py +++ b/tasks/ceph_deploy.py @@ -368,8 +368,7 @@ def build_ceph_cluster(ctx, config): if mds_nodes: log.info('Configuring CephFS...') - ceph_fs = Filesystem( - ctx, admin_remote=clients.remotes.keys()[0]) + ceph_fs = Filesystem(ctx) if not ceph_fs.legacy_configured(): ceph_fs.create() elif not config.get('only_mon'): -- 2.47.3