Skip to content
This repository was archived by the owner on Dec 14, 2022. It is now read-only.

Commit 4fa8cfa

Browse files
author
Chris Wiechmann
committed
Small changes before release 2.0.0
1 parent bfee30f commit 4fa8cfa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

elasticsearch/docker-compose.es02.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ services:
44
elasticsearch2:
55
image: docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
66
# Custom entrypoint to configured ES based on given ELASTICSEARCH_HOSTS
7-
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint
7+
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint.sh
88
container_name: elasticsearch2
99
environment:
1010
- "ES_JAVA_OPTS=${ES_JAVA_OPTS}"
1111
- cluster.name=${ELASTICSEARCH_CLUSTERNAME}
1212
- node.name=Elasticsearch2 # Don't change the format (name and number) as it is used to bootstrap the cluster and identify the node number
1313
- ELASTICSEARCH_HOSTS=${ELASTICSEARCH_HOSTS}
1414
- ELASTICSEARCH_ANONYMOUS_ENABLED=${ELASTICSEARCH_ANONYMOUS_ENABLED:-true}
15-
- SELF_MONITORING_ENABLED=${SELF_MONITORING_ENABLED:-t}
15+
- SELF_MONITORING_ENABLED=${SELF_MONITORING_ENABLED}
1616
- xpack.security.enabled=true
1717
- xpack.security.http.ssl.enabled=true
1818
- xpack.security.http.ssl.key=/usr/share/elasticsearch/${ELASTICSEARCH_KEY}

elasticsearch/docker-compose.es03.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
elasticsearch3:
55
image: docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
66
# Custom entrypoint to configured ES based on given ELASTICSEARCH_HOSTS
7-
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint
7+
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint.sh
88
container_name: elasticsearch3
99
environment:
1010
- "ES_JAVA_OPTS=${ES_JAVA_OPTS}"

elasticsearch/docker-compose.es04.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
elasticsearch4:
55
image: docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
66
# Custom entrypoint to configured ES based on given ELASTICSEARCH_HOSTS
7-
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint
7+
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint.sh
88
container_name: elasticsearch4
99
environment:
1010
- "ES_JAVA_OPTS=${ES_JAVA_OPTS}"

elasticsearch/docker-compose.es05.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
elasticsearch4:
55
image: docker.elastic.co/elasticsearch/elasticsearch:${ELASTIC_VERSION}
66
# Custom entrypoint to configured ES based on given ELASTICSEARCH_HOSTS
7-
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint
7+
entrypoint: /usr/share/elasticsearch/scripts/elasticsearch-custom-entrypoint.sh
88
container_name: elasticsearch5
99
environment:
1010
- "ES_JAVA_OPTS=${ES_JAVA_OPTS}"

env-sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ APIGATEWAY_PAYLOADS_FOLDER=/home/localuser/Axway-x.y.z/apigateway/logs/payloads
4747
# this environment variable is used to locate the ElasticSearch cluster.
4848
# You may provide a single host or an array of hosts.
4949
# Example: ELASTICSEARCH_HOSTS=https://elasticsearch1:9200,https://elasticsearch2:9201
50-
# Used-By: Filebeat, API-Builder, Logstash
50+
# Used-By: Filebeat, API-Builder, Logstash, Metricbeat
5151
ELASTICSEARCH_HOSTS=https://elasticsearch1:9200
5252

5353
# ----------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)