2021-12-01 19:13:34 +01:00
|
|
|
---
|
|
|
|
|
2022-01-25 15:00:05 +01:00
|
|
|
# Version of elasticsearch to deploy
|
2024-07-30 00:00:44 +02:00
|
|
|
es_version: 8.14.3
|
2022-01-25 15:00:05 +01:00
|
|
|
# root directory
|
|
|
|
es_root_dir: /opt/elasticsearch
|
|
|
|
# URL of the archive
|
|
|
|
es_archive_url: https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-{{ es_version }}-linux-x86_64.tar.gz
|
|
|
|
# Expected sha512 of the archive
|
2024-07-30 00:00:44 +02:00
|
|
|
es_archive_sha512: 5c9df84b225e4a80d6f86d84e4f9afaa23fd51c0f62827d085957447057361db3c3adc485eaec18f6c98615739babf2e5c7c4cc2a7a6351c79f384150c293391
|
2022-01-25 15:00:05 +01:00
|
|
|
# Should ansible handle upgrades or only initial installation ?
|
|
|
|
es_manage_upgrade: True
|
|
|
|
# User under which the service will run (will be created)
|
|
|
|
es_user: elasticsearch
|
2021-12-01 19:13:34 +01:00
|
|
|
# Name of the Elasticsearch cluster
|
|
|
|
es_cluster_name: elasticsearch
|
|
|
|
# Name of this ES node
|
|
|
|
es_node_name: "{{ inventory_hostname }}"
|
|
|
|
# Port on which ES will bind
|
|
|
|
es_port: 9200
|
|
|
|
# List of IP/CIDR which will have access to es_port (if iptables_manage == True)
|
|
|
|
es_src_ip: []
|
2022-01-25 15:00:05 +01:00
|
|
|
# Define Xms / Xmx
|
|
|
|
es_memory: 1g
|
|
|
|
|