Fix the prechecks action for prometheus_server

the prometheus container is not exits, it should be
prometheus_server[0]

[0]: https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/prometheus/defaults/main.yml#L6

Change-Id: Ib44390af9b8af5156dafbd0b0da6ae061a926ec7
This commit is contained in:
ZhijunWei 2018-04-28 15:12:14 +00:00 committed by weizj
parent de1777134e
commit bca297b948

View File

@ -2,13 +2,13 @@
- name: Get container facts
kolla_container_facts:
name:
- prometheus
- prometheus_server
- prometheus_node_exporter
- prometheus_haproxy_exporter
- prometheus_mysqld_exporter
register: container_facts
- name: Checking free port for Prometheus
- name: Checking free port for Prometheus server
wait_for:
host: "{{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}"
port: "{{ prometheus_port }}"
@ -16,7 +16,7 @@
timeout: 1
state: stopped
when:
- container_facts['prometheus'] is not defined
- container_facts['prometheus_server'] is not defined
- inventory_hostname in groups['prometheus']
- name: Checking free port for Prometheus node_exporter