ES start timeout parameterized
This commit is contained in:
parent
b9a5ed744e
commit
60cc77f497
@ -7,6 +7,7 @@ elasticsearch_jvm_xms: null
|
|||||||
elastic_stack_version: 7.10.2
|
elastic_stack_version: 7.10.2
|
||||||
elasticsearch_lower_disk_requirements: false
|
elasticsearch_lower_disk_requirements: false
|
||||||
elasticsearch_path_repo: []
|
elasticsearch_path_repo: []
|
||||||
|
elasticsearch_start_timeout: 90
|
||||||
|
|
||||||
elasticrepo:
|
elasticrepo:
|
||||||
apt: 'https://artifacts.elastic.co/packages/7.x/apt'
|
apt: 'https://artifacts.elastic.co/packages/7.x/apt'
|
||||||
|
|||||||
@ -107,6 +107,14 @@
|
|||||||
- ansible_distribution == "Ubuntu"
|
- ansible_distribution == "Ubuntu"
|
||||||
- ansible_distribution_major_version | int == 14
|
- ansible_distribution_major_version | int == 14
|
||||||
|
|
||||||
|
- name: Ensure extra time for Elasticsearch to start on reboots
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
path: /usr/lib/systemd/system/elasticsearch.service
|
||||||
|
regexp: '^TimeoutStartSec='
|
||||||
|
line: "TimeoutStartSec={{ elasticsearch_start_timeout }}"
|
||||||
|
become: yes
|
||||||
|
tags: configure
|
||||||
|
|
||||||
- name: Ensure Elasticsearch started and enabled
|
- name: Ensure Elasticsearch started and enabled
|
||||||
service:
|
service:
|
||||||
name: elasticsearch
|
name: elasticsearch
|
||||||
@ -160,3 +168,9 @@
|
|||||||
failed_when: http_response.status != 200
|
failed_when: http_response.status != 200
|
||||||
when:
|
when:
|
||||||
- elasticsearch_xpack_users is defined
|
- elasticsearch_xpack_users is defined
|
||||||
|
|
||||||
|
- name: Reload systemd configuration
|
||||||
|
systemd:
|
||||||
|
daemon_reload: true
|
||||||
|
become: yes
|
||||||
|
notify: restart elasticsearch
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user