b51eeed89e
include is marked as deprecated since ansible 2.4[0] [0] https://docs.ansible.com/ansible/2.4/include_module.html#deprecated Co-Authored-By: confi-surya <singh.surya64mnnit@gmail.com> Change-Id: Ic9d71e1865d1c728890625aeddf424a5734c0a8a
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
---
|
|
- include_tasks: ceph.yml
|
|
when:
|
|
- enable_ceph | bool
|
|
- enable_ceph_mds | bool
|
|
- (enable_manila_backend_cephfs_native | bool) or (enable_manila_backend_cephfs_nfs | bool)
|
|
- inventory_hostname in groups['manila-share']
|
|
|
|
- include_tasks: external_ceph.yml
|
|
when:
|
|
- enable_ceph| bool == False
|
|
- enable_ceph_mds| bool == False
|
|
- (enable_manila_backend_cephfs_native | bool) or (enable_manila_backend_cephfs_nfs | bool)
|
|
- inventory_hostname in groups['manila-share']
|
|
|
|
- include_tasks: clone.yml
|
|
when: manila_dev_mode | bool
|
|
|
|
- include_tasks: register.yml
|
|
when: inventory_hostname in groups['manila-api']
|
|
|
|
- include_tasks: config.yml
|
|
when: inventory_hostname in groups['manila-api'] or
|
|
inventory_hostname in groups['manila-data'] or
|
|
inventory_hostname in groups['manila-share'] or
|
|
inventory_hostname in groups['manila-scheduler']
|
|
|
|
- include_tasks: bootstrap.yml
|
|
when: inventory_hostname in groups['manila-api']
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
- include_tasks: fix_cephfs_owner.yml
|
|
when:
|
|
- enable_ceph | bool
|
|
- enable_ceph_mds | bool
|
|
- enable_manila_backend_cephfs_native | bool
|
|
- inventory_hostname in groups['manila-share']
|