diff --git a/.env b/.env index 19b1489..e6ba90c 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -ELK_VERSION=7.8.0 +ELK_VERSION=7.9.1 diff --git a/.travis/run-tests-enterprise-search.sh b/.travis/run-tests-enterprise-search.sh index 3a5139d..a941da8 100755 --- a/.travis/run-tests-enterprise-search.sh +++ b/.travis/run-tests-enterprise-search.sh @@ -16,7 +16,7 @@ log 'Waiting for readiness of Enterprise Search' poll_ready enterprise-search 'http://localhost:3002/api/ent/v1/internal/health' 'elastic:testpasswd' log 'Retrieving private key from Elasticsearch' -response="$(curl 'http://localhost:9200/.ent-search-actastic-app_search_api_tokens/_search?q=name:private-key' -s -u elastic:testpasswd)" +response="$(curl 'http://localhost:9200/.ent-search-actastic-app_search_api_tokens_v2/_search?q=name:private-key' -s -u elastic:testpasswd)" hits="$(jq -rn --argjson data "${response}" '$data.hits.hits')" echo "$hits" count="$(jq -rn --argjson data "${response}" '$data.hits.total.value')" diff --git a/README.md b/README.md index 73a55b0..227a5a3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Elastic stack (ELK) on Docker [![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Elastic Stack version](https://img.shields.io/badge/ELK-7.8.0-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/515) +[![Elastic Stack version](https://img.shields.io/badge/ELK-7.9.1-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/529) [![Build Status](https://api.travis-ci.org/deviantony/docker-elk.svg?branch=master)](https://travis-ci.org/deviantony/docker-elk) Run the latest version of the [Elastic stack][elk-stack] with Docker and Docker Compose. @@ -238,7 +238,7 @@ Create an index pattern via the Kibana API: ```console $ curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \ -H 'Content-Type: application/json' \ - -H 'kbn-version: 7.8.0' \ + -H 'kbn-version: 7.9.1' \ -u elastic: \ -d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}' ``` diff --git a/docker-stack.yml b/docker-stack.yml index dc8b807..0f0fa64 100644 --- a/docker-stack.yml +++ b/docker-stack.yml @@ -3,7 +3,7 @@ version: '3.3' services: elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:7.8.0 + image: docker.elastic.co/elasticsearch/elasticsearch:7.9.1 ports: - "9200:9200" - "9300:9300" @@ -23,7 +23,7 @@ services: replicas: 1 logstash: - image: docker.elastic.co/logstash/logstash:7.8.0 + image: docker.elastic.co/logstash/logstash:7.9.1 ports: - "5000:5000" - "9600:9600" @@ -41,7 +41,7 @@ services: replicas: 1 kibana: - image: docker.elastic.co/kibana/kibana:7.8.0 + image: docker.elastic.co/kibana/kibana:7.9.1 ports: - "5601:5601" configs: