Downgrade default key mon capabilities

The 'w' capability for mon is no longer required by default, as
the ceph broker in the ceph{-mon} charm is responsible for pool
creation, not clients.

Drop this permission (keys are automatically upgraded).

Change-Id: I85ba55b7b929eb852046db354a745eb3beed2c51
Depends-On: Iefffe047214555a15c4201fca605f07ac39c8f5c
Partial-Bug: 1424771
This commit is contained in:
James Page 2016-10-17 09:22:15 +01:00
parent e785e13b24
commit 526dc525d4
1 changed files with 1 additions and 1 deletions

View File

@ -949,7 +949,7 @@ def get_mds_bootstrap_key():
_default_caps = collections.OrderedDict([
('mon', ['allow rw']),
('mon', ['allow r']),
('osd', ['allow rwx']),
])