47762d4850
* Move the tasks to the role * Skip the task when container is already running Change-Id: I1990d4dd2a02efa2b3766329000aa23419e0ff17 Closes-Bug: #1670286
27 lines
741 B
YAML
27 lines
741 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- cinder_api
|
|
register: container_facts
|
|
|
|
- name: Checking free port for Cinder API
|
|
wait_for:
|
|
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
|
|
port: "{{ cinder_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['cinder_api'] is not defined
|
|
- inventory_hostname in groups['cinder-api']
|
|
|
|
- name: Checking LVM volume group exists for Cinder
|
|
command: "vgs {{ cinder_volume_group }}"
|
|
register: result
|
|
changed_when: false
|
|
failed_when: result | failed
|
|
when:
|
|
- enable_cinder | bool
|
|
- enable_cinder_backend_lvm | bool
|
|
- inventory_hostname in groups['cinder-volume']
|