ceph-ansible/roles/ceph-common/tasks/checks/check_mandatory_vars.yml

41 lines
1010 B
YAML
Raw Normal View History

---
- name: make sure an installation origin was chosen
fail:
msg: "choose an installation origin"
when:
- ceph_origin != 'upstream'
- ceph_origin != 'distro'
- ceph_origin != 'local'
tags:
- package-install
- name: make sure an installation source was chosen
2015-09-04 00:18:53 +08:00
fail:
msg: "choose an upstream installation source or read https://github.com/ceph/ceph-ansible/wiki"
when:
- ceph_origin == 'upstream'
- not ceph_stable
- not ceph_dev
- not ceph_rhcs
- not ceph_stable_uca
- not ceph_custom
tags:
- package-install
- name: verify that a method was chosen for red hat storage
2015-09-04 00:18:53 +08:00
fail:
msg: "choose between ceph_rhcs_cdn_install and ceph_rhcs_iso_install"
when:
- ceph_rhcs
- not ceph_rhcs_cdn_install
- not ceph_rhcs_iso_install
- ceph_origin != 'distro'
tags:
- package-install
- name: make sure monitor_interface is defined
fail:
msg: "you must set monitor_interface"
when:
- monitor_interface == 'interface'