Remove some obsolete variables.

This commit is contained in:
Andrea Dell'Amico 2022-05-11 11:30:15 +02:00
parent 63b561d455
commit 4d0a44cfec
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 0 additions and 8 deletions

View File

@ -19,8 +19,6 @@ opensearch_bin_dir: '{{ opensearch_base_install_dir }}/bin'
opensearch_cluster_name: 'Opensearch Cluster'
opensearch_http_port: 9200
opensearch_transport_min_port: 9300
opensearch_transport_max_port: 9400
opensearch_data_dirs:
- /var/lib/opensearch
opensearch_log_dir: /var/log/opensearch

View File

@ -68,7 +68,6 @@ http.port: {{ opensearch_http_port }}
# by default transport.host refers to network.host
transport.host: {{ opensearch_bind_ip }}
transport.tcp.port: {{ opensearch_transport_min_port }}-{{ opensearch_transport_max_port }}
#
# --------------------------------- Discovery ----------------------------------
#
@ -98,14 +97,9 @@ gateway.recover_after_nodes: {{ opensearch_recover_after_nodes }}
{% endif %}
# ---------------------------------- Various -----------------------------------
#
# Disable starting multiple nodes on a single system:
#
node.max_local_storage_nodes: {{ opensearch_max_local_storage_nodes }}
#
# Require explicit names when deleting indices:
#
action.destructive_requires_name: {{ opensearch_destructive_requires_name | lower }}
#
cluster.routing.allocation.disk.threshold_enabled: {{ opensearch_cluster_routing_allocation_disk_threshold_enabled }}
cluster.routing.allocation.disk.watermark.low: {{ opensearch_cluster_routing_allocation_disk_watermark_low }}