mirror of https://github.com/ceph/ceph-ansible.git
18 lines
462 B
YAML
18 lines
462 B
YAML
---
|
|
- name: include create_mds_filesystems.yml
|
|
include_tasks: create_mds_filesystems.yml
|
|
when:
|
|
- inventory_hostname == groups[mds_group_name] | first
|
|
- not rolling_update | bool
|
|
|
|
- name: include common.yml
|
|
include_tasks: common.yml
|
|
|
|
- name: non_containerized.yml
|
|
include_tasks: non_containerized.yml
|
|
when: not containerized_deployment | bool
|
|
|
|
- name: containerized.yml
|
|
include_tasks: containerized.yml
|
|
when: containerized_deployment | bool
|