Skip to content
Snippets Groups Projects
Commit 6374339c authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add a precheck to ensure Cinder backend enabled"

parents 1850e624 a80f47da
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,19 @@ ...@@ -16,6 +16,19 @@
- container_facts['cinder_api'] is not defined - container_facts['cinder_api'] is not defined
- inventory_hostname in groups['cinder-api'] - 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 - name: Checking LVM volume group exists for Cinder
command: "vgs {{ cinder_volume_group }}" command: "vgs {{ cinder_volume_group }}"
register: result 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