mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-07-30 20:53:27 +02:00
Merge pull request #16109 from Security-Onion-Solutions/fixESHEAP
Add default esheap value so nodes highstate without the pillar value
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
elasticsearch:
|
||||
enabled: false
|
||||
esheap: '600m'
|
||||
version: 9.3.7
|
||||
index_clean: true
|
||||
data_retention_method: DLM
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
{% import 'vars/init.map.jinja' as INIT %}
|
||||
{% import_yaml 'elasticsearch/defaults.yaml' as ELASTICSEARCHDEFAULTS %}
|
||||
|
||||
{%
|
||||
set ELASTICSEARCH_GLOBALS = {
|
||||
'elasticsearch': {
|
||||
'es_cluster_name': INIT.PILLAR.elasticsearch.config.cluster.name,
|
||||
'es_heap': INIT.PILLAR.elasticsearch.esheap
|
||||
'es_heap': INIT.PILLAR.elasticsearch.get('esheap', ELASTICSEARCHDEFAULTS.elasticsearch.esheap)
|
||||
}
|
||||
}
|
||||
%}
|
||||
|
||||
Reference in New Issue
Block a user