From 726ba753417fc3d1338b90b8c6d59479e8987f45 Mon Sep 17 00:00:00 2001
From: Raimund Hook <openstack@sting-ray.za.net>
Date: Sat, 4 May 2019 18:48:03 +0100
Subject: [PATCH] Updated ansible uri module HEADERS_ field

This fixes a deprecation warning that gets displayed when running
the kibana/post_config 'Get kibana default indexes' task.

HEADERS_ has been deprecated since ansible 2.1 and will be
removed in 2.9.

https://docs.ansible.com/ansible/latest/modules/uri_module.html

TrivialFix

Change-Id: I177113c606119505c6cb69c66a326f7cbdaf2196
---
 ansible/roles/kibana/tasks/post_config.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ansible/roles/kibana/tasks/post_config.yml b/ansible/roles/kibana/tasks/post_config.yml
index 75536f319..bba785ee4 100644
--- a/ansible/roles/kibana/tasks/post_config.yml
+++ b/ansible/roles/kibana/tasks/post_config.yml
@@ -42,7 +42,8 @@
 
 - name: Get kibana default indexes
   uri:
-    HEADER_Content-Type: application/json
+    headers:
+      Content-Type: application/json
     url: "{{ internal_protocol }}://{{ kolla_internal_vip_address }}:{{ elasticsearch_port }}/.kibana"
     method: GET
   register: kibana_default_indexes
-- 
GitLab