ansible-role-elasticsearch/tasks/elasticsearch-templates.yml

22 lines
736 B
YAML
Raw Normal View History

---
2015-11-25 15:28:09 +00:00
#TODO: How to handle in multi node
2015-11-25 23:43:01 +00:00
# 1. Template directory needs to be specifiable
- name: Copy templates to elasticsearch
copy: src=templates dest=/etc/elasticsearch/
2015-11-25 23:43:01 +00:00
- set_fact: http_port=9200
- set_fact: http_port={{es_config['http.port']}}
when: es_config['http.port'] is defined
- name: Wait for elasticsearch to startup
2015-11-25 23:43:01 +00:00
wait_for: port={{http_port}} delay=10
- name: Get template files
shell: find . -maxdepth 1 -type f | sed "s#\./##" | sed "s/.json//" chdir=/etc/elasticsearch/templates
register: resultstemplate
- name: Install template(s)
2015-11-25 23:43:01 +00:00
command: "curl -sL -XPUT http://localhost:{{http_port}}/_template/{{item}} -d @/etc/elasticsearch/templates/{{item}}.json"
with_items: resultstemplate.stdout_lines