
Enabling ANSIBLE_INJECT_FACT_VARS does result in a performance regression as each variable loaded to runtime slows down task execution. We disable ANSIBLE_INJECT_FACT_VARS in OSA by default for a while, so ELK role should also be able to run with this setting disabled. Change-Id: Ibffc09cdb4f9289ddad38211ccb0265642b4321f
43 lines
1.8 KiB
YAML
43 lines
1.8 KiB
YAML
---
|
|
# Copyright 2018, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# This interface is used to determine cluster recovery speed.
|
|
elastic_data_interface: "{{ ansible_facts['default_ipv4']['alias'] }}"
|
|
|
|
# A list of interfaces/ports of the elasticsearch data nodes
|
|
# to override the default of ansible_host:elastic_port
|
|
# for each node
|
|
# elasticsearch_data_node_socket_addresses: []
|
|
|
|
# A list of interfaces/ports of the logstash data nodes
|
|
# to override the default of ansible_host:logstash_beat_input_port
|
|
# for each node
|
|
# logstash_data_node_socket_addresses: []
|
|
|
|
# A list of interfaces/ports of the elasticsearch coordinator nodes
|
|
# to override the default of ansible_host:logstash_beat_input_port
|
|
# for each node, or to provide different coordinators when necessary
|
|
# elasticsearch_coordination_node_socket_addresses: []
|
|
|
|
## Elasticsearch index template settings
|
|
# Set the default max number of fields used in a query
|
|
# elastic_max_docvalue_fields_search: "100"
|
|
# Set the number of primary shards for each index
|
|
# (defaults to the number of Elasticsearch data nodes)
|
|
# elastic_primary_shard_count: 1
|
|
|
|
# The set of nodes used for elasticsearch discovery
|
|
# elasticsearch_discovery_seed_hosts: "{{ (elastic_hosts | union(groups['kibana'])) | map('extract', hostvars, 'ansible_host') | list }}"
|