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

34 lines
1.1 KiB
YAML
Raw Normal View History

---
- 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/journal_collocation.yml
2016-04-01 18:57:58 +08:00
when:
- (journal_collocation or dmcrypt_journal_collocation)
- 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/raw_multi_journal.yml
2016-04-01 18:57:58 +08:00
when:
- raw_multi_journal
- 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/dmcrypt-dedicated-journal.yml
when:
- dmcrypt_dedicated_journal
- 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