mirror of https://github.com/ceph/ceph-ansible.git
32 lines
776 B
YAML
32 lines
776 B
YAML
---
|
|
- include: check_mandatory_vars.yml
|
|
|
|
- include: deploy_monitors.yml
|
|
when: not containerized_deployment
|
|
|
|
- include: start_monitor.yml
|
|
when: not containerized_deployment
|
|
|
|
- include: ceph_keys.yml
|
|
when: not containerized_deployment
|
|
# this avoids the bug mentioned here: https://github.com/ansible/ansible/issues/18206
|
|
static: no
|
|
|
|
- include: create_mds_filesystems.yml
|
|
when:
|
|
- not containerized_deployment
|
|
- groups[mds_group_name] is defined
|
|
- "{{ groups[mds_group_name]|length > 0 }}"
|
|
- "{{ inventory_hostname == groups[mon_group_name] | last }}"
|
|
|
|
- include: secure_cluster.yml
|
|
when:
|
|
- secure_cluster
|
|
- not containerized_deployment
|
|
|
|
- include: ./docker/main.yml
|
|
when: containerized_deployment
|
|
|
|
- include: calamari.yml
|
|
when: calamari
|