Skip to content

Commit

Permalink
Update to 5.4 (deviantony#120)
Browse files Browse the repository at this point in the history
Includes required change for logstash config and disables the new machine learning functionality in x-pack by default.
  • Loading branch information
mtdavidson authored and antoineco committed May 8, 2017
1 parent a9e7c3d commit aa06a82
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion kibana/Dockerfile
Original file line number Diff line number Diff line change
@@ -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>
1 change: 1 addition & 0 deletions kibana/config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ elasticsearch.url: http:https://elasticsearch:9200
#
xpack.security.enabled: false
xpack.monitoring.enabled: false
xpack.ml.enabled: false
xpack.graph.enabled: false
xpack.reporting.enabled: false
2 changes: 1 addition & 1 deletion logstash/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion logstash/config/logstash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit aa06a82

Please sign in to comment.