ansible-role-elasticsearch/tasks/config.yml

22 lines
523 B
YAML
Raw Normal View History

2020-02-09 14:15:24 +00:00
---
2023-07-05 09:36:13 +00:00
- name: Set heap size
2022-04-07 12:55:14 +00:00
ansible.builtin.lineinfile:
2020-02-09 14:15:24 +00:00
path: /etc/elasticsearch/jvm.options
2023-07-05 09:36:13 +00:00
regexp: "^-{{ item }}"
line: "-{{ item }}{{ elasticsearch_heap_size }}"
2020-02-09 14:15:24 +00:00
loop:
- Xms
- Xmx
2023-07-05 09:36:13 +00:00
notify: Restart elasticsearch
2020-02-09 14:15:24 +00:00
tags: elasticsearch
2023-07-05 09:36:13 +00:00
- name: Copy config file
2022-04-07 12:55:14 +00:00
ansible.builtin.copy:
2023-07-05 09:36:13 +00:00
content: "{{ elasticsearch_full_config | to_yaml }}"
2020-02-09 14:15:24 +00:00
dest: /etc/elasticsearch/elasticsearch.yml
owner: root
group: elasticsearch
mode: 0640
2023-07-05 09:36:13 +00:00
notify: Restart elasticsearch
2020-02-09 14:15:24 +00:00
tags: elasticsearch