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: v14.2.10~185^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=390b349c6fefbbdddc50932d560164fe547fd57f;p=ceph.git qa/workunits/rbd: added mgr 'profile rbd' caps to mirror user Signed-off-by: Jason Dillaman (cherry picked from commit 41357d242b0c4787630b80f445ca877a49611c0b) --- diff --git a/qa/workunits/rbd/rbd_mirror_helpers.sh b/qa/workunits/rbd/rbd_mirror_helpers.sh index bfcbf6484ed..20b7440e5ec 100755 --- a/qa/workunits/rbd/rbd_mirror_helpers.sh +++ b/qa/workunits/rbd/rbd_mirror_helpers.sh @@ -191,12 +191,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 }