f77c67fa0e
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
25 lines
719 B
YAML
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
|