ceph-ansible/roles/ceph-mds/tasks/main.yml

18 lines
462 B
YAML
Raw Normal View History

---
- 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