1989cfe103
Complete the reconfigure optimise action for iscsi Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Co-Authored-By: mgoddard <mark@stackhpc.com> Change-Id: I6a1f24bc13bdea148857de9e6f4df79ff97bc9bc Partially-implements: blueprint better-reconfigure Closes-Bug: #1772215
19 lines
448 B
YAML
19 lines
448 B
YAML
---
|
|
- name: Get container facts
|
|
kolla_container_facts:
|
|
name:
|
|
- iscsid
|
|
register: container_facts
|
|
|
|
- name: Checking free port for iscsi
|
|
wait_for:
|
|
host: "{{ api_interface_address }}"
|
|
port: "{{ iscsi_port }}"
|
|
connect_timeout: 1
|
|
timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['iscsid'] is not defined
|
|
- inventory_hostname in groups[iscsi_services.iscsid.group]
|
|
- iscsi_services.iscsid.enabled | bool
|