Skip to content
Snippets Groups Projects
Commit a80f47da authored by Paul Bourke's avatar Paul Bourke Committed by Paul Bourke (pbourke)
Browse files

Add a precheck to ensure Cinder backend enabled

Make sure at least one Cinder backend is enabled if enable_cinder=True

Change-Id: Ie40f4832f7860fcbc7074b61df9f49fcaed2471b
parent bf0e8a8d
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,19 @@
- container_facts['cinder_api'] is not defined
- inventory_hostname in groups['cinder-api']
- name: Checking at least one valid backend is enabled for Cinder
run_once: True
local_action: fail msg="Please enable at least one backend when enabling Cinder"
when:
- not enable_cinder_backend_hnas_iscsi | bool
- not enable_cinder_backend_hnas_nfs | bool
- not enable_cinder_backend_iscsi | bool
- not enable_cinder_backend_lvm | bool
- not enable_cinder_backend_nfs | bool
- not cinder_backend_ceph | bool
- not cinder_backend_vmwarevc_vmdk | bool
- not enable_cinder_backend_zfssa_iscsi | bool
- name: Checking LVM volume group exists for Cinder
command: "vgs {{ cinder_volume_group }}"
register: result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment