Merge "Dont use local connection for kibana post config"

This commit is contained in:
Zuul 2017-11-08 19:51:28 +00:00 committed by Gerrit Code Review
commit 03a99e8168

View File

@ -4,7 +4,6 @@
host: "{{ kolla_internal_vip_address }}"
port: "{{ kibana_server_port }}"
run_once: true
connection: local
- name: Wait for kibana to register in elasticsearch
uri:
@ -15,7 +14,6 @@
retries: 5
delay: 2
run_once: true
connection: local
- name: Get kibana default indexes
uri:
@ -24,7 +22,6 @@
method: GET
register: kibana_default_indexes
run_once: true
connection: local
when: kibana_default_index is defined
- name: Set kibana default indexes fact
@ -43,7 +40,6 @@
body_format: json
status_code: 201
run_once: true
connection: local
when:
- kibana_default_index is defined
- kibana_default_indexes is defined
@ -77,7 +73,6 @@
body_format: json
status_code: 200
run_once: true
connection: local
when:
- kibana_default_index is defined
- kibana_default_indexes is defined