From dd15c21aec116b505e5903c37839a6f7660e000d Mon Sep 17 00:00:00 2001 From: Chris MacNaughton Date: Tue, 17 Mar 2020 17:02:27 +0100 Subject: [PATCH] Ensure that the ceph admin keyring always has the mgr permissions Closes-Bug: #1867795 Change-Id: I5412fa1cd40a27213296532fd160012ec5299b3e --- charms_ceph/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/charms_ceph/utils.py b/charms_ceph/utils.py index eaaa92b..0f1a689 100644 --- a/charms_ceph/utils.py +++ b/charms_ceph/utils.py @@ -1112,6 +1112,7 @@ _default_caps = collections.OrderedDict([ admin_caps = collections.OrderedDict([ ('mds', ['allow *']), + ('mgr', ['allow *']), ('mon', ['allow *']), ('osd', ['allow *']) ])