mirror of https://github.com/ceph/ceph-ansible.git
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
---
|
|
- include: check_mandatory_vars.yml
|
|
|
|
- include: pre_requisite.yml
|
|
when: not containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|
|
|
|
- include: ./scenarios/collocated.yml
|
|
when:
|
|
- osd_scenario == 'collocated'
|
|
- not containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|
|
|
|
- include: ./scenarios/non-collocated.yml
|
|
when:
|
|
- osd_scenario == 'non-collocated'
|
|
- not containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|
|
|
|
- name: create lvm osds with ceph-volume
|
|
include: ./scenarios/lvm.yml
|
|
when:
|
|
- osd_scenario == 'lvm'
|
|
- not containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|
|
|
|
- name: ensure osd daemons are started
|
|
include: start_osds.yml
|
|
when:
|
|
- not containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|
|
|
|
- include: ./docker/main.yml
|
|
when: containerized_deployment
|
|
# Hard code this so we will skip the entire file instead of individual tasks (Default isn't Consistent)
|
|
static: False
|