4e6fe7a6da
Kolla-Ansible Ceph deployment mechanism has been deprecated in Train [1]. This change removes the Ansible code and associated CI jobs. [1]: https://review.opendev.org/669214 Change-Id: Ie2167f02ad2f525d3b0f553e2c047516acf55bc2
24 lines
672 B
YAML
24 lines
672 B
YAML
---
|
|
- 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_manila_backend_cephfs_native | bool
|
|
- inventory_hostname in groups['manila-share']
|