46aeb9843f
When running in check mode, some prechecks previously failed because they use the command module which is silently not run in check mode. Other prechecks were not running correctly in check mode due to e.g. looking for a string in empty command output or not querying which containers are running. This change fixes these issues. Closes-Bug: #2002657 Change-Id: I5219cb42c48d5444943a2d48106dc338aa08fa7c
36 lines
916 B
YAML
36 lines
916 B
YAML
---
|
|
- import_role:
|
|
name: service-precheck
|
|
vars:
|
|
service_precheck_services: "{{ vitrage_services }}"
|
|
service_name: "{{ project_name }}"
|
|
|
|
- name: Get container facts
|
|
become: true
|
|
kolla_container_facts:
|
|
container_engine: "{{ kolla_container_engine }}"
|
|
name:
|
|
- vitrage_api
|
|
check_mode: false
|
|
register: container_facts
|
|
|
|
- name: Checking free port for vitrage API
|
|
wait_for:
|
|
host: "{{ 'api' | kolla_address }}"
|
|
port: "{{ vitrage_api_port }}"
|
|
connect_timeout: 1
|
|
state: stopped
|
|
when:
|
|
- container_facts['vitrage_api'] is not defined
|
|
- inventory_hostname in groups['vitrage-api']
|
|
|
|
- name: Checking custom prometheus_conf.yaml exists
|
|
stat:
|
|
path: "{{ node_custom_config }}/vitrage/prometheus_conf.yaml"
|
|
delegate_to: localhost
|
|
register: result
|
|
run_once: true
|
|
failed_when: not result.stat.exists
|
|
when:
|
|
- enable_vitrage_prometheus_datasource | bool
|