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

23 lines
544 B
YAML
Raw Normal View History

---
- name: include create_mds_filesystems.yml
include: create_mds_filesystems.yml
when:
- inventory_hostname == groups[mds_group_name] | first
- name: set_fact docker_exec_cmd
set_fact:
docker_exec_cmd: "docker exec ceph-mds-{{ ansible_hostname }}"
when:
- containerized_deployment
- name: include common.yml
include: common.yml
- name: non_containerized.yml
include: non_containerized.yml
when: not containerized_deployment
- name: containerized.yml
include: containerized.yml
when: containerized_deployment