Ceph: update Cephx Keys
 
It’s not really clear from the command line
Generate a dummy key for the exercise
| $ ceph auth get-or-create client.dummy mon 'allow r' osd 'allow rwx pool=dummy' | 
Verify that the key is present:
| $ ceph auth list | 
Then grant more permission on the mon:
| $ ceph auth caps client.dummy mon 'allow rwx' osd 'allow rwx pool=dummy' | 
Verify that the change has been applied:
| $ ceph auth list | 
Hope it helps!

Comments