cleanup some values related to 5.x version

We can remove them since 5.x is no more supported
This commit is contained in:
Julien Mailleret 2019-09-05 10:50:20 +02:00
parent e45c902e5e
commit be7941438c
No known key found for this signature in database
GPG key ID: F065093271C8DE71
2 changed files with 1 additions and 5 deletions

View file

@ -29,7 +29,7 @@ es_data_dirs:
es_log_dir: "/var/log/elasticsearch"
es_action_auto_create_index: true
es_max_open_files: 65536
es_max_threads: "{{ 2048 if ( es_version is version_compare('6.0.0', '<')) else 8192 }}"
es_max_threads: 8192
es_max_map_count: 262144
es_allow_downgrades: false
es_xpack_features: []

View file

@ -15,10 +15,6 @@ node.name: {{inventory_hostname}}
# Path to directory containing configuration (this file and logging.yml):
{% if (es_version is version_compare('6.0.0', '<')) %}
path.conf: {{ es_conf_dir }}
{% endif %}
path.data: {{ es_data_dirs | array_to_str }}
path.logs: {{ es_log_dir }}