Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
ES update to 7.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xtermi2 committed Aug 8, 2021
1 parent 29afd56 commit d83b1e6
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Instructions to build this image
FROM docker.elastic.co/elasticsearch/elasticsearch:7.13.4
FROM docker.elastic.co/elasticsearch/elasticsearch:7.14.0

ARG VCS_REF
ARG BUILD_DATE
Expand All @@ -13,7 +13,7 @@ LABEL org.label-schema.vcs-url="https://github.com/xtermi2/sec-elasticsearch-pro
LABEL org.label-schema.vcs-ref=$VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE

ENV PROMETHEUS_EXPORTER_VERSION "7.13.4.0"
ENV PROMETHEUS_EXPORTER_VERSION "7.14.0.0"

ENV ELASTIC_PASSWORD ""
ENV KIBANA_PASSWORD ""
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
networks:
- pulldognet
kibana:
image: docker.elastic.co/kibana/kibana:7.13.4
image: docker.elastic.co/kibana/kibana:7.14.0
container_name: kibana
environment:
ELASTICSEARCH_HOSTS: "https://es_1:9200"
Expand All @@ -118,7 +118,7 @@ services:
networks:
- pulldognet
filebeat:
image: docker.elastic.co/beats/filebeat:7.13.4
image: docker.elastic.co/beats/filebeat:7.14.0
container_name: filebeat
# to overwrite the -e that disables logging to file and disable strict permission checks for filebeat.yml!
command: -c filebeat.yml -strict.perms=false
Expand Down
2 changes: 1 addition & 1 deletion example/certs-gen/create-certs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2.2'
services:
create_certs:
container_name: create_certs
image: docker.elastic.co/elasticsearch/elasticsearch:7.13.4
image: docker.elastic.co/elasticsearch/elasticsearch:7.14.0
command: >
bash -c '
yum install -y -q -e 0 unzip;
Expand Down
8 changes: 4 additions & 4 deletions example/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: '3.6'
services:
es_1:
image: xtermi2/sec-elasticsearch-prometheus:7.13.4
image: xtermi2/sec-elasticsearch-prometheus:7.14.0
container_name: es_1
environment:
- node.name=es_1
Expand Down Expand Up @@ -51,7 +51,7 @@ services:
networks:
- esnet
es_2:
image: xtermi2/sec-elasticsearch-prometheus:7.13.4
image: xtermi2/sec-elasticsearch-prometheus:7.14.0
container_name: es_2
environment:
- node.name=es_2
Expand Down Expand Up @@ -100,7 +100,7 @@ services:
networks:
- esnet
kibana:
image: docker.elastic.co/kibana/kibana:7.13.4
image: docker.elastic.co/kibana/kibana:7.14.0
container_name: kibana
environment:
ELASTICSEARCH_HOSTS: "https://es_1:9200"
Expand All @@ -121,7 +121,7 @@ services:
networks:
- esnet
filebeat:
image: docker.elastic.co/beats/filebeat:7.13.4
image: docker.elastic.co/beats/filebeat:7.14.0
container_name: filebeat
# to overwrite the -e that disables logging to file and disable strict permission checks for filebeat.yml!
command: -c filebeat.yml -strict.perms=false
Expand Down
4 changes: 2 additions & 2 deletions src/test/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ services:
networks:
- esnet
kibana:
image: docker.elastic.co/kibana/kibana:7.13.4
image: docker.elastic.co/kibana/kibana:7.14.0
container_name: kibana
environment:
ELASTICSEARCH_HOSTS: "https://es_1:9200"
Expand All @@ -114,7 +114,7 @@ services:
networks:
- esnet
filebeat:
image: docker.elastic.co/beats/filebeat:7.13.4
image: docker.elastic.co/beats/filebeat:7.14.0
container_name: filebeat
# to overwrite the -e that disables logging to file and disable strict permission checks for filebeat.yml!
command: -c filebeat.yml -strict.perms=false
Expand Down
2 changes: 1 addition & 1 deletion src/test/test_case_filebeats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ echo ""

echo -n "TEST if filebeat index exists..."
meta_beat=$(jq -r '.[].mappings._meta.version' <<<"${index}")
if [ "${meta_beat}" != "7.13.4" ]; then
if [ "${meta_beat}" != "7.14.0" ]; then
echo "failed: mappings._meta.version is unexpected \"${meta_beat}\"; response=\"${index}\""
echo "filebeat_stats: ${filebeat_stats}"
((general_status++))
Expand Down

0 comments on commit d83b1e6

Please sign in to comment.