2014-03-04 02:08:51 +08:00
|
|
|
---
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include create_mds_filesystems.yml
|
|
|
|
ansible.builtin.include_tasks: create_mds_filesystems.yml
|
2018-05-25 08:39:01 +08:00
|
|
|
when:
|
|
|
|
- inventory_hostname == groups[mds_group_name] | first
|
2019-05-22 16:02:42 +08:00
|
|
|
- not rolling_update | bool
|
2018-05-25 08:39:01 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Include common.yml
|
|
|
|
ansible.builtin.include_tasks: common.yml
|
2018-04-11 23:15:29 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Non_containerized.yml
|
|
|
|
ansible.builtin.include_tasks: non_containerized.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: not containerized_deployment | bool
|
2014-03-04 02:08:51 +08:00
|
|
|
|
2024-02-14 18:14:02 +08:00
|
|
|
- name: Containerized.yml
|
|
|
|
ansible.builtin.include_tasks: containerized.yml
|
2019-05-22 16:02:42 +08:00
|
|
|
when: containerized_deployment | bool
|