Single template file

This commit is contained in:
Dale McDiarmid 2017-08-17 12:25:25 +01:00
parent 979ef94f77
commit ce180520a8
4 changed files with 18 additions and 21 deletions

1
.gitignore vendored
View file

@ -7,3 +7,4 @@ Converging
TODO TODO
.idea/ .idea/
elasticsearch.iml elasticsearch.iml
!/vars/RedHat.yml

View file

@ -1,9 +0,0 @@
---
- file: path=/etc/elasticsearch/templates state=directory owner={{ es_user }} group={{ es_group }}
- name: Copy templates to elasticsearch
copy: src={{ item }} dest=/etc/elasticsearch/templates owner={{ es_user }} group={{ es_group }}
register: load_templates
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"

View file

@ -1,12 +1,21 @@
#Templates done after restart therefore. e.g. suppose user removes security on a running node and doesn't specify es_api_basic_auth_username and es_api_basic_auth_password. The templates will subsequently not be removed if we don't wait for the node to restart. ---
- file: path=/etc/elasticsearch/templates state=directory owner={{ es_user }} group={{ es_group }}
- name: Copy templates to elasticsearch
copy: src={{ item }} dest=/etc/elasticsearch/templates owner={{ es_user }} group={{ es_group }}
register: load_templates
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"
- name: Ensure elasticsearch is started - name: Ensure elasticsearch is started
service: name={{instance_init_script | basename}} state=started enabled=yes service: name={{instance_init_script | basename}} state=started enabled=yes
when: es_start_service when: es_start_service and load_templates.changed
- name: Wait for elasticsearch to startup - name: Wait for elasticsearch to startup
wait_for: host={{es_api_host}} port={{es_api_port}} delay=10 wait_for: host={{es_api_host}} port={{es_api_port}} delay=10
when: es_start_service when: es_start_service and load_templates.changed
- name: Install templates without auth - name: Install templates without auth
uri: uri:
@ -15,7 +24,7 @@
status_code: 200 status_code: 200
body_format: json body_format: json
body: "{{ lookup('file', item) }}" body: "{{ lookup('file', item) }}"
when: es_start_service and not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features when: load_templates.changed and es_start_service and not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features
with_fileglob: with_fileglob:
- "{{ es_templates_fileglob | default('') }}" - "{{ es_templates_fileglob | default('') }}"
run_once: True run_once: True
@ -30,7 +39,7 @@
force_basic_auth: yes force_basic_auth: yes
body_format: json body_format: json
body: "{{ lookup('file', item) }}" body: "{{ lookup('file', item) }}"
when: es_start_service and es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features when: load_templates.changed and es_start_service and es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
with_fileglob: with_fileglob:
- "{{ es_templates_fileglob | default('') }}" - "{{ es_templates_fileglob | default('') }}"
run_once: True run_once: True

View file

@ -37,15 +37,11 @@
tags: tags:
- xpack - xpack
- include: elasticsearch-template-copy.yml
when: es_templates
tags:
- templates
- meta: flush_handlers - meta: flush_handlers
- include: elasticsearch-template-insert.yml #Templates done after restart - handled by flushing the handlers. e.g. suppose user removes security on a running node and doesn't specify es_api_basic_auth_username and es_api_basic_auth_password. The templates will subsequently not be removed if we don't wait for the node to restart.
when: load_templates - include: elasticsearch-template.yml
when: es_templates
tags: tags:
- templates - templates