ansible-role-elasticsearch/tasks/elasticsearch-template-insert.yml

36 lines
1.5 KiB
YAML
Raw Normal View History

2017-08-16 12:41:10 +01:00
#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.
2017-01-04 16:39:00 +00:00
- name: Ensure elasticsearch is started
service: name={{instance_init_script | basename}} state=started enabled=yes
2017-08-16 12:41:10 +01:00
when: es_start_service
2017-01-04 16:39:00 +00:00
- name: Wait for elasticsearch to startup
wait_for: host={{es_api_host}} port={{es_api_port}} delay=10
2017-08-16 12:41:10 +01:00
when: es_start_service
2017-01-04 16:39:00 +00:00
2016-07-24 19:18:04 +01:00
- name: Install templates without auth
uri:
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
2016-07-24 19:18:04 +01:00
method: PUT
status_code: 200
body_format: json
body: "{{ lookup('file', item) }}"
2017-08-16 12:41:10 +01:00
when: es_start_service and not es_enable_xpack or not es_xpack_features is defined or "security" not in es_xpack_features
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"
run_once: True
2016-07-24 19:18:04 +01:00
- name: Install templates with auth
uri:
url: "http://{{es_api_host}}:{{es_api_port}}/_template/{{item | filename}}"
2016-07-24 19:18:04 +01:00
method: PUT
status_code: 200
user: "{{es_api_basic_auth_username}}"
password: "{{es_api_basic_auth_password}}"
force_basic_auth: yes
body_format: json
body: "{{ lookup('file', item) }}"
2017-08-16 12:41:10 +01:00
when: es_start_service and es_enable_xpack and es_xpack_features is defined and "security" in es_xpack_features
with_fileglob:
- "{{ es_templates_fileglob | default('') }}"
2017-08-16 12:41:10 +01:00
run_once: True