mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 15:43:22 +02:00
12 lines
362 B
Plaintext
12 lines
362 B
Plaintext
![]() |
cluster.name: {{ es_cluster_name }}
|
||
|
network.host: 0.0.0.0
|
||
|
http.port: {{ es_port }}
|
||
|
node.name: {{ es_node_name }}
|
||
|
path.data: {{ es_data_dir }}
|
||
|
path.logs: /var/log/elasticsearch
|
||
|
path.repo: [ {{ es_backup_dir }} ]
|
||
|
action.auto_create_index: false
|
||
|
{% if es_major_version is defined and es_major_version is version('7','>=') %}
|
||
|
discovery.type: single-node
|
||
|
{% endif %}
|