Ensure that the beat setup role runs when elk_beat_setup=true
Currently it is possible for the elk_beat_setup flag not to trigger the beat_setup role when no kibana nodes are present. This means that there is no way to update the index templates in this situation, so beats will just use a default index setup, and ILM policies will not be applied. This can lead to inconsistent configurations where manual deletion of default-templated indices is required. This can happen during an ELK version upgrade, where new templates should be created but aren't. This commit ensures that the beat setup role is run whenever the elk_beat_setup flag is set to true. As a result, the user can force index templates to be updated even when no kibana nodes are present to ensure consistency. It also documents the previously undocumented elk_beat_setup var in both the Beat role defaults and the beat_setup role itself Change-Id: Ife0d0f12d6b300b84b63c3af14add1732747d44f
This commit is contained in:
parent
ee92eeafa2
commit
01352a45f6
@ -37,3 +37,8 @@ auditbeat_log_level: "{{ elastic_beat_log_level | default('info') }}"
|
||||
# particularly when auditbeat is deployed to a container host, and largely overlaps
|
||||
# with Packetbeat data
|
||||
auditbeat_ignore_socket_data: false
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -98,7 +98,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "auditbeat"
|
||||
|
||||
|
@ -32,3 +32,8 @@ elastic_beat_kibana_host: "{{ hostvars[groups['kibana'][0]]['ansible_host'] }}"
|
||||
# This is by default set to elastic_beat_kibana_host, but if using a non-standard
|
||||
# interface, the no_proxy enivronment may need to be changed.
|
||||
elastic_beat_no_proxy: "{{ elastic_beat_kibana_host }}"
|
||||
|
||||
# Override flag to force set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -306,3 +306,8 @@ filebeat_iptables_enabled: false
|
||||
# The following allows one to specify log files in non-standard locations,
|
||||
# defaulting to log collection in syslog
|
||||
filebeat_iptables_log_paths: ["var/log/syslog"]
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -101,7 +101,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "filebeat"
|
||||
|
||||
|
@ -36,3 +36,8 @@ heartbeat_log_level: "{{ elastic_beat_log_level | default('info') }}"
|
||||
# List of interfaces with which heartbeat tests connectivity.
|
||||
# Defaults to ansible_host on all hosts in the inventory to which heartbeat is deployed
|
||||
# heartbeat_icmp_hosts: "{{ groups['heartbeat'] | default(groups['heartbeat_deployment_targets']) | map('extract', hostvars, ['ansible_host']) | list }}"
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -96,7 +96,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "heartbeat"
|
||||
|
||||
|
@ -43,3 +43,8 @@ journalbeat_queue_flush_min_events: 2048
|
||||
|
||||
# Max time before queue is flushed (even if queue_min_events is not reached)
|
||||
journalbeat_queue_flush_timeout: 1s
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -106,7 +106,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "journalbeat"
|
||||
|
||||
|
@ -43,3 +43,8 @@ processors: {}
|
||||
# Logging level
|
||||
# Available log levels are error, warning, info, debug
|
||||
metricbeat_log_level: "{{ elastic_beat_log_level | default('info') }}"
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -316,7 +316,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "metricbeat"
|
||||
|
||||
|
@ -36,3 +36,8 @@ packetbeat_ignored_ports: []
|
||||
# Logging level
|
||||
# Available log levels are error, warning, info, debug
|
||||
packetbeat_log_level: "{{ elastic_beat_log_level | default('info') }}"
|
||||
|
||||
# Override flag to force Beats to set up index templates. If this is not
|
||||
# set, templates are only pushed when the user is either upgrading the
|
||||
# beat version or deploying for the first time in the presence of kibana nodes
|
||||
elk_beat_setup: false
|
||||
|
@ -81,7 +81,7 @@
|
||||
include_role:
|
||||
name: elastic_beat_setup
|
||||
when:
|
||||
- (groups['kibana'] | length) > 0
|
||||
- (groups['kibana'] | length) > 0 or (elk_beat_setup | bool)
|
||||
vars:
|
||||
elastic_beat_name: "packetbeat"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user