21 lines
715 B
YAML
21 lines
715 B
YAML
|
---
|
||
|
## Default Elasticsearch configuration from elasticsearch-docker.
|
||
|
## from https://github.com/elastic/elasticsearch-docker/blob/master/build/elasticsearch/elasticsearch.yml
|
||
|
#
|
||
|
network.host: 0.0.0.0
|
||
|
|
||
|
# minimum_master_nodes need to be explicitly set when bound on a public IP
|
||
|
# set to 1 to allow single node clusters
|
||
|
# Details: https://github.com/elastic/elasticsearch/pull/17288
|
||
|
# discovery.zen.minimum_master_nodes: 1
|
||
|
|
||
|
## Use single node discovery in order to disable production mode and avoid bootstrap checks
|
||
|
## see https://www.elastic.co/guide/en/elasticsearch/reference/current/bootstrap-checks.html
|
||
|
#
|
||
|
discovery.type: single-node
|
||
|
## Search Guard
|
||
|
#
|
||
|
cluster.routing.allocation.disk.watermark.flood_stage: 99%
|
||
|
|
||
|
|