From a9d75166c2d855fea003a2e6f2a60037b752b50c Mon Sep 17 00:00:00 2001 From: John Spray Date: Thu, 20 Apr 2017 15:22:18 +0100 Subject: [PATCH] mgr: update osd and mds caps This is to enable mgr daemons to remote control mds and osd daemons using MCommand messages. Fixes: http://tracker.ceph.com/issues/19713 Signed-off-by: John Spray --- ceph_deploy/mgr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ceph_deploy/mgr.py b/ceph_deploy/mgr.py index 72046a4..d3991c1 100644 --- a/ceph_deploy/mgr.py +++ b/ceph_deploy/mgr.py @@ -49,6 +49,8 @@ def create_mgr(distro, name, cluster, init): '--keyring', bootstrap_keyring, 'auth', 'get-or-create', 'mgr.{name}'.format(name=name), 'mon', 'allow profile mgr', + 'osd', 'allow *', + 'mds', 'allow *', '-o', os.path.join(keypath), ] -- 2.47.3