From: Jason Dillaman Date: Thu, 13 Feb 2020 01:22:30 +0000 (-0500) Subject: qa/workunits/rbd: added mgr 'profile rbd' caps to mirror user X-Git-Tag: v15.1.1~437^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=41357d242b0c4787630b80f445ca877a49611c0b;p=ceph.git qa/workunits/rbd: added mgr 'profile rbd' caps to mirror user Signed-off-by: Jason Dillaman --- diff --git a/qa/workunits/rbd/rbd_mirror_helpers.sh b/qa/workunits/rbd/rbd_mirror_helpers.sh index 688a2a72c82f..ab20e9f75bfa 100755 --- a/qa/workunits/rbd/rbd_mirror_helpers.sh +++ b/qa/workunits/rbd/rbd_mirror_helpers.sh @@ -195,12 +195,12 @@ create_users() CEPH_ARGS='' ceph --cluster "${cluster}" \ auth get-or-create client.${CEPH_ID} \ - mon 'profile rbd' osd 'profile rbd' >> \ + mon 'profile rbd' osd 'profile rbd' mgr 'profile rbd' >> \ ${CEPH_ROOT}/run/${cluster}/keyring for instance in `seq 0 ${LAST_MIRROR_INSTANCE}`; do CEPH_ARGS='' ceph --cluster "${cluster}" \ auth get-or-create client.${MIRROR_USER_ID_PREFIX}${instance} \ - mon 'profile rbd-mirror' osd 'profile rbd' >> \ + mon 'profile rbd-mirror' osd 'profile rbd' mgr 'profile rbd' >> \ ${CEPH_ROOT}/run/${cluster}/keyring done }