diff options
author | Jan Provaznik <jprovazn@redhat.com> | 2017-08-31 14:28:28 +0200 |
---|---|---|
committer | Tom Barron <tpb@dyncloud.net> | 2017-09-06 01:59:32 +0000 |
commit | 7bb41c9f910e1fa29df27cb9972ca7bceee650b3 (patch) | |
tree | 4eaa110ba8059bd834aa84ff58970c5343c2260f /docker | |
parent | 9f408dbe8bc8371424ecb816877b1cfe62498f8d (diff) |
Escape ceph capabilities for manila client
Capabilities were not properly escaped and ignored by ceph.
Change-Id: I099c3d9bad95ec69ac85fe406e3e1d4685ede439
Closes: #1713928
Diffstat (limited to 'docker')
-rw-r--r-- | docker/services/ceph-ansible/ceph-base.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/services/ceph-ansible/ceph-base.yaml b/docker/services/ceph-ansible/ceph-base.yaml index bf2c86c4..2f2af2d6 100644 --- a/docker/services/ceph-ansible/ceph-base.yaml +++ b/docker/services/ceph-ansible/ceph-base.yaml @@ -241,7 +241,7 @@ outputs: - - client - {get_param: ManilaCephFSNativeCephFSAuthId} key: {get_param: CephManilaClientKey} - mon_cap: "allow r, allow command auth del, allow command auth caps, allow command auth get, allow command auth get-or-create" + mon_cap: 'allow r, allow command \\\"auth del\\\", allow command \\\"auth caps\\\", allow command \\\"auth get\\\", allow command \\\"auth get-or-create\\\"' mds_cap: "allow *" osd_cap: "allow rw" mode: "0644" |