4ce47e2250
Refactor that prepares kolla_container_facts module for introducing more actions that will be moved from kolla_container module and kolla_container_volume_facts. This change is based on a discussion about adding a new action to kolla_container module that retrieves all names of the running containers. It was agreed that kolla-ansible should follow Ansible's direction of splitting modules between action modules and facts modules. Because of this, kolla_container_facts needs to be able to handle different requests for data about containers or volumes. Change-Id: Ieaec8f64922e4e5a2199db2d6983518b124cb4aa Signed-off-by: Ivan Halomi <ivan.halomi@tietoevry.com>
37 lines
923 B
YAML
37 lines
923 B
YAML
---
|
|
- import_role:
|
|
name: service-precheck
|
|
vars:
|
|
service_precheck_services: "{{ iscsi_services }}"
|
|
service_name: "{{ project_name }}"
|
|
|
|
- name: Get container facts
|
|
become: true
|
|
kolla_container_facts:
|
|
action: get_containers
|
|
container_engine: "{{ kolla_container_engine }}"
|
|
name:
|
|
- iscsid
|
|
check_mode: false
|
|
register: container_facts
|
|
|
|
- name: Checking free port for iscsi
|
|
wait_for:
|
|
host: "{{ tgtd_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
|
|
|
|
- name: Check supported platforms for tgtd
|
|
assert:
|
|
that: ansible_facts.os_family != 'RedHat'
|
|
fail_msg: >
|
|
The SCSI target daemon tgtd is not supported on CentOS/RHEL
|
|
when:
|
|
- enable_tgtd | bool
|