kolla-ansible/ansible/roles/vitrage/tasks/precheck.yml
Kien Nguyen f77c67fa0e [Vitrage] Add Prometheus datasource configuration
Vitrage supports new Prometheus configuration now [1].
Kolla should allow user to configure this configuration
file.

[1] https://review.openstack.org/#/c/630514/

Change-Id: I84072d90b0342c6d460ee733ba646a5fb787faa9
2019-02-19 10:31:11 +00:00

25 lines
719 B
YAML

---
- name: Get container facts
kolla_container_facts:
name:
- vitrage_api
register: container_facts
- name: Checking free port for vitrage API
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['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
local_action: stat_path="{{ node_custom_config }}/vitrage/prometheus_conf.yaml"
register: result
run_once: true
failed_when: not result.stat.exists
when:
- enable_vitrage_prometheus_datasource | bool