Merge "Switch deprecated options to "modern" equivalents"

This commit is contained in:
Zuul 2021-03-01 12:23:31 +00:00 committed by Gerrit Code Review
commit 5112d2cc5d

View File

@ -111,10 +111,10 @@ node.data: {{ elasticsearch_node_data | default(data_node) }}
# #
{% if elasticsearch_node_ingest is defined %} {% if elasticsearch_node_ingest is defined %}
node.ingest: {{ elasticsearch_node_ingest }} node.ingest: {{ elasticsearch_node_ingest }}
cluster.remote.connect: {{ elasticsearch_node_ingest }} node.remote_cluster_client: {{ elasticsearch_node_ingest }}
{% else %} {% else %}
node.ingest: {{ data_node }} node.ingest: {{ data_node }}
cluster.remote.connect: {{ data_node }} node.remote_cluster_client: {{ data_node }}
{% endif %} {% endif %}
# #
# ---------------------------------- Gateway ----------------------------------- # ---------------------------------- Gateway -----------------------------------
@ -146,7 +146,7 @@ thread_pool:
# override the number of detected processors. This can be done by explicitly # override the number of detected processors. This can be done by explicitly
# setting the processors setting. On Kibana hosts where elasticsearch is running # setting the processors setting. On Kibana hosts where elasticsearch is running
# as a coordination node, the processor count is limited. # as a coordination node, the processor count is limited.
processors: {{ processors }} node.processors: {{ processors }}
{% endif %} {% endif %}