Skip to content

Commit

Permalink
ugpraded ELK to version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spujadas committed Nov 14, 2017
1 parent 9e66c7f commit fd776fc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile for ELK stack
# Elasticsearch, Logstash, Kibana 6.0.0-rc2
# Elasticsearch, Logstash, Kibana 6.0.0

# Build with:
# docker build -t <repo-user>/elk .
Expand Down Expand Up @@ -39,7 +39,7 @@ RUN set -x \
&& set +x


ENV ELK_VERSION 6.0.0-rc2
ENV ELK_VERSION 6.0.0

### install Elasticsearch

Expand Down
2 changes: 1 addition & 1 deletion README-short.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Collect, search and visualise log data with ELK (Elasticsearch 6.0.0-rc2, Logstash 6.0.0-rc2, Kibana 6.0.0-rc2).
Collect, search and visualise log data with ELK (Elasticsearch 6.0.0, Logstash 6.0.0, Kibana 6.0.0).
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ This image is hosted on Docker Hub at [https://hub.docker.com/r/sebp/elk/](https

The following tags are available:

- `latest`, `600-rc2`: ELK 6.0.0-rc2.
- `latest`, `600`: ELK 6.0.0.

- `600-rc2`: ELK 6.0.0-rc2.

- `600-rc1`: ELK 6.0.0-rc1.

Expand Down
4 changes: 3 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,9 @@ The following environment variables can be used to override the defaults used to

- `ES_CONNECT_RETRY`: number of seconds to wait for Elasticsearch to be up before starting Logstash and/or Kibana (default: `30`)

- `ES_PROTOCOL`: protocol to use to ping Elasticsearch's JSON interface URL (default: `http`)
- `ES_PROTOCOL`: protocol to use to ping Elasticsearch's JSON interface URL (default: `http`)

Note that this variable is only used to test if Elasticsearch is up when starting up the services. It is not used to update Elasticsearch's URL in Logstash's and Kibana's configuration files.

- `CLUSTER_NAME`: the name of the Elasticsearch cluster (default: automatically resolved when the container starts if Elasticsearch requires no user authentication).

Expand Down
4 changes: 2 additions & 2 deletions nginx-filebeat/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile to illustrate how Filebeat can be used with nginx
# Filebeat 6.0.0-rc2
# Filebeat 6.0.0

# Build with:
# docker build -t filebeat-nginx-example .
Expand All @@ -23,7 +23,7 @@ RUN apt-get update -qq \
&& apt-get install -qqy curl \
&& apt-get clean

ENV FILEBEAT_VERSION 6.0.0-rc2
ENV FILEBEAT_VERSION 6.0.0

RUN curl -L -O https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-${FILEBEAT_VERSION}-amd64.deb \
&& dpkg -i filebeat-${FILEBEAT_VERSION}-amd64.deb \
Expand Down
2 changes: 1 addition & 1 deletion spec/Dockerfile_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "docker"
require "serverspec"

ELK_VERSION = "6.0.0-rc2"
ELK_VERSION = "6.0.0"
ELASTICSEARCH_VERSION = ELK_VERSION
LOGSTASH_VERSION = ELK_VERSION
KIBANA_VERSION = ELK_VERSION
Expand Down

0 comments on commit fd776fc

Please sign in to comment.