mirror of https://github.com/ceph/ceph-ansible.git
20 lines
571 B
YAML
20 lines
571 B
YAML
---
|
|
- include: deploy_monitors.yml
|
|
when: not ceph_containerized_deployment
|
|
|
|
- include: start_monitor.yml
|
|
when: not ceph_containerized_deployment
|
|
|
|
- include: ceph_keys.yml
|
|
when: not ceph_containerized_deployment
|
|
|
|
- include: create_mds_filesystems.yml
|
|
when: not ceph_containerized_deployment and not {{ ceph_version.stdout | version_compare('0.84', '<') }} and mds
|
|
|
|
- include: secure_cluster.yml
|
|
when: secure_cluster and {{ ceph_version.stdout | version_compare('0.94', '>=') }}
|
|
tags: secure_cluster
|
|
|
|
- include: docker.yml
|
|
when: ceph_containerized_deployment
|