Ivan Halomi 4ce47e2250 Refactor of kolla_container_facts
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>
2024-08-12 09:54:05 +02:00

75 lines
2.1 KiB
YAML

---
- import_role:
name: service-precheck
vars:
service_precheck_services: "{{ octavia_services }}"
service_name: "{{ project_name }}"
- name: Get container facts
become: true
kolla_container_facts:
action: get_containers
container_engine: "{{ kolla_container_engine }}"
name:
- octavia_api
- octavia_health_manager
check_mode: false
register: container_facts
- name: Checking free port for Octavia API
wait_for:
host: "{{ api_interface_address }}"
port: "{{ octavia_api_listen_port }}"
connect_timeout: 1
timeout: 1
state: stopped
when:
- container_facts['octavia_api'] is not defined
- inventory_hostname in groups['octavia-api']
- name: Checking free port for Octavia Health Manager
wait_for:
host: "{{ api_interface_address }}"
port: "{{ octavia_health_manager_port }}"
connect_timeout: 1
timeout: 1
state: stopped
when:
- container_facts['octavia_health_manager'] is not defined
- inventory_hostname in groups['octavia-health-manager']
- name: Checking certificate files exist for octavia
stat:
path: "{{ node_custom_config }}/octavia/{{ item }}"
delegate_to: localhost
run_once: True
register: result
failed_when: not result.stat.exists
when:
- inventory_hostname in groups['octavia-worker']
- "'amphora' in octavia_provider_drivers"
with_items:
- client.cert-and-key.pem
- client_ca.cert.pem
- server_ca.cert.pem
- server_ca.key.pem
- name: Fail when Neutron plugin agent is not supported
fail:
msg: >
Neutron plugin agent {{ neutron_plugin_agent }} is not supported when
octavia_network_type is tenant, only openvswitch is supported currently
run_once: True
when:
- octavia_auto_configure | bool
- octavia_network_type == "tenant"
- neutron_plugin_agent != 'openvswitch'
- name: Checking whether Redis is enabled for octavia jobboard
assert:
that: enable_redis | bool
fail_msg: "Redis must be enabled when using octavia jobboard"
run_once: True
when:
- enable_octavia_jobboard | bool