7a9f04573a
Second part of patchset: https://review.opendev.org/c/openstack/kolla-ansible/+/799229/ in which was suggested to split patch into smaller ones. This change adds container_engine variable to kolla_container_facts module, this prepares module to be used with docker and podman as well without further changes in roles. Signed-off-by: Ivan Halomi <i.halomi@partner.samsung.com> Co-authored-by: Martin Hiner <m.hiner@partner.samsung.com> Change-Id: I9e8fa30646844ab4a288555f3aafdda345b3a118
54 lines
1.6 KiB
YAML
54 lines
1.6 KiB
YAML
---
|
|
- import_role:
|
|
name: service-precheck
|
|
vars:
|
|
service_precheck_services: "{{ cinder_services }}"
|
|
service_name: "{{ project_name }}"
|
|
|
|
- name: Get container facts
|
|
become: true
|
|
kolla_container_facts:
|
|
container_engine: "{{ kolla_container_engine }}"
|
|
name:
|
|
- cinder_api
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Cinder API
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ cinder_api_listen_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- 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
|
|
fail:
|
|
msg: "Please enable at least one backend when enabling Cinder"
|
|
when:
|
|
- not skip_cinder_backend_check | 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 cinder_backend_vmware_vstorage_object | bool
|
|
- not enable_cinder_backend_quobyte | bool
|
|
- not enable_cinder_backend_pure_iscsi | bool
|
|
- not enable_cinder_backend_pure_fc | bool
|
|
|
|
- name: Checking LVM volume group exists for Cinder
|
|
become: true
|
|
command: "vgs {{ cinder_volume_group }}"
|
|
register: result
|
|
changed_when: false
|
|
failed_when: result is failed
|
|
when:
|
|
- enable_cinder | bool
|
|
- enable_cinder_backend_lvm | bool
|
|
- inventory_hostname in groups['cinder-volume']
|