mirror of https://github.com/ceph/ceph-ansible.git
crash: refact caps definition
there is no need to use `{{ }}` syntax here.
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
(cherry picked from commit a8bd947c7d
)
pull/5966/head
parent
e6b3186420
commit
a6dac8c93d
|
@ -5,7 +5,9 @@
|
|||
- name: create client.crash keyring
|
||||
ceph_key:
|
||||
name: "client.crash"
|
||||
caps: "{{ {'mon': 'allow profile crash', 'mgr': 'allow profile crash'} }}"
|
||||
caps:
|
||||
mon: 'allow profile crash'
|
||||
mgr: 'allow profile crash'
|
||||
cluster: "{{ cluster }}"
|
||||
dest: "{{ ceph_conf_key_directory }}"
|
||||
import_key: True
|
||||
|
|
Loading…
Reference in New Issue