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: I23a75bc4d3737f9181b48d0affb046349be4153b
Depends-On: Iefffe047214555a15c4201fca605f07ac39c8f5c
Partial-Bug: 1424771
This commit is contained in:
James Page 2016-10-17 09:18:38 +01:00
parent 96de9f8e35
commit a2d19d37ea
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']),
])