mirror of https://github.com/ceph/ceph-ansible.git
ceph-mon: adds static: no to an include to avoid an ansible bug
Adding that avoids this bug: https://github.com/ansible/ansible/issues/18206 Without that you'll get failures like: TASK [ceph-mon : set keys permissions] ***************************************** task path: /home/andrewschoen/ceph-ansible/roles/ceph-mon/tasks/ceph_keys.yml:31 fatal: [mon0]: FAILED! => {"failed": true, "msg": "'dict object' has no attribute 'stdout_lines'"} Signed-off-by: Andrew Schoen <aschoen@redhat.com>pull/1138/head
parent
11c13ad7c0
commit
1e64eb7111
|
@ -7,6 +7,8 @@
|
||||||
|
|
||||||
- include: ceph_keys.yml
|
- include: ceph_keys.yml
|
||||||
when: not mon_containerized_deployment
|
when: not mon_containerized_deployment
|
||||||
|
# this avoids the bug mentioned here: https://github.com/ansible/ansible/issues/18206
|
||||||
|
static: no
|
||||||
|
|
||||||
- include: create_mds_filesystems.yml
|
- include: create_mds_filesystems.yml
|
||||||
when:
|
when:
|
||||||
|
|
Loading…
Reference in New Issue