Merged PR #300
This commit is contained in:
commit
a9987e2fb4
3 changed files with 24 additions and 22 deletions
|
|
@ -6,29 +6,29 @@
|
||||||
- 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
|
||||||
|
|
||||||
- name: Get template files
|
|
||||||
find: paths="/etc/elasticsearch/templates" patterns="*.json"
|
|
||||||
register: templates
|
|
||||||
|
|
||||||
- name: Install templates without auth
|
- name: Install templates without auth
|
||||||
uri:
|
uri:
|
||||||
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item.path | filename}}"
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
|
||||||
method: PUT
|
method: PUT
|
||||||
status_code: 200
|
status_code: 200
|
||||||
body_format: json
|
body_format: json
|
||||||
body: "{{ lookup('file', item.path) }}"
|
body: "{{ lookup('file', item) }}"
|
||||||
when: not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features
|
when: not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features
|
||||||
with_items: "{{ templates.files }}"
|
with_fileglob:
|
||||||
|
- "{{ es_templates_fileglob | default('') }}"
|
||||||
|
run_once: True
|
||||||
|
|
||||||
- name: Install templates with auth
|
- name: Install templates with auth
|
||||||
uri:
|
uri:
|
||||||
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item.path | filename}}"
|
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
|
||||||
method: PUT
|
method: PUT
|
||||||
status_code: 200
|
status_code: 200
|
||||||
user: "{{es_api_basic_auth_username}}"
|
user: "{{es_api_basic_auth_username}}"
|
||||||
password: "{{es_api_basic_auth_password}}"
|
password: "{{es_api_basic_auth_password}}"
|
||||||
force_basic_auth: yes
|
force_basic_auth: yes
|
||||||
body_format: json
|
body_format: json
|
||||||
body: "{{ lookup('file', item.path) }}"
|
body: "{{ lookup('file', item) }}"
|
||||||
when: es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
|
when: es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
|
||||||
with_items: "{{ templates.files }}"
|
with_fileglob:
|
||||||
|
- "{{ es_templates_fileglob | default('') }}"
|
||||||
|
run_once: True
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,3 @@
|
||||||
- name: reload systemd configuration
|
|
||||||
command: systemctl daemon-reload
|
|
||||||
|
|
||||||
# Restart service and ensure it is enabled
|
|
||||||
- name: restart elasticsearch
|
|
||||||
service: name={{instance_init_script | basename}} state=restarted enabled=yes
|
|
||||||
when:
|
|
||||||
- es_restart_on_change
|
|
||||||
- es_start_service
|
|
||||||
- ((plugin_installed is defined and plugin_installed.changed) or (config_updated is defined and config_updated.changed) or (xpack_state.changed) or (debian_elasticsearch_install_from_repo.changed or redhat_elasticsearch_install_from_repo.changed or elasticsearch_install_from_package.changed))
|
|
||||||
register: es_restarted
|
|
||||||
|
|
||||||
#Templates are a handler as they need to come after a restart e.g. suppose user removes security on a running node and doesn't
|
#Templates are a handler as they need to come after a restart 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.
|
#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.
|
||||||
|
|
@ -18,3 +7,4 @@
|
||||||
include: ./handlers/elasticsearch-templates.yml
|
include: ./handlers/elasticsearch-templates.yml
|
||||||
#only do templates if we're starting
|
#only do templates if we're starting
|
||||||
when: es_templates and es_start_service
|
when: es_templates and es_start_service
|
||||||
|
when: es_templates
|
||||||
|
|
@ -42,6 +42,18 @@
|
||||||
tags:
|
tags:
|
||||||
- templates
|
- templates
|
||||||
|
|
||||||
|
- name: reload systemd configuration
|
||||||
|
command: systemctl daemon-reload
|
||||||
|
|
||||||
|
# Restart service and ensure it is enabled
|
||||||
|
- name: restart elasticsearch
|
||||||
|
service: name={{instance_init_script | basename}} state=restarted enabled=yes
|
||||||
|
when:
|
||||||
|
- es_restart_on_change
|
||||||
|
- es_start_service
|
||||||
|
- ((plugin_installed is defined and plugin_installed.changed) or (config_updated is defined and config_updated.changed) or (xpack_state.changed) or (debian_elasticsearch_install_from_repo.changed or redhat_elasticsearch_install_from_repo.changed or elasticsearch_install_from_package.changed))
|
||||||
|
register: es_restarted
|
||||||
|
|
||||||
- meta: flush_handlers
|
- meta: flush_handlers
|
||||||
|
|
||||||
- name: Make sure elasticsearch is started
|
- name: Make sure elasticsearch is started
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue