Update to 5.4 (#120)

Includes required change for logstash config and disables the new machine learning functionality in x-pack by default.
This commit is contained in:
Mark Davidson 2017-05-08 16:13:05 +01:00 committed by Antoine Cotten
parent a9e7c3d801
commit aa06a825eb
6 changed files with 7 additions and 4 deletions

View File

@ -14,6 +14,7 @@ services:
# https://www.elastic.co/guide/en/x-pack/current/installing-xpack.html#xpack-enabling
xpack.security.enabled: "false"
xpack.monitoring.enabled: "false"
xpack.ml.enabled: "false"
xpack.graph.enabled: "false"
xpack.watcher.enabled: "false"
networks:

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/elasticsearch-docker
FROM docker.elastic.co/elasticsearch/elasticsearch:5.3.0
FROM docker.elastic.co/elasticsearch/elasticsearch:5.4.0
# Add your elasticsearch plugins setup here
# Example: RUN elasticsearch-plugin install analysis-icu

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/kibana-docker
FROM docker.elastic.co/kibana/kibana:5.3.0
FROM docker.elastic.co/kibana/kibana:5.4.0
# Add your kibana plugins setup here
# Example: RUN kibana-plugin install <name|url>

View File

@ -12,5 +12,6 @@ elasticsearch.url: http://elasticsearch:9200
#
xpack.security.enabled: false
xpack.monitoring.enabled: false
xpack.ml.enabled: false
xpack.graph.enabled: false
xpack.reporting.enabled: false

View File

@ -1,5 +1,5 @@
# https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash:5.3.0
FROM docker.elastic.co/logstash/logstash:5.4.0
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json

View File

@ -3,9 +3,10 @@
## from https://github.com/elastic/logstash-docker/blob/master/build/logstash/config/logstash.yml
#
http.host: "0.0.0.0"
path.config: /usr/share/logstash/pipeline
## Disable X-Pack
## see https://www.elastic.co/guide/en/x-pack/current/xpack-settings.html
## https://www.elastic.co/guide/en/x-pack/current/installing-xpack.html#xpack-enabling
#
xpack.monitoring.enabled: false
xpack.monitoring.enabled: false