Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docker-compose/docker-compose.base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ services:
restart: unless-stopped
environment:
- JAVA_TOOL_OPTIONS=-Xmx186m #deployment: 768m
- ELASTICSEARCH_USER=elastic
- ELASTICSEARCH_PASSWORD=gridsuiteelasticsearch
command: >
--server.port=80
--spring.config.additional-location=/config/
Expand Down Expand Up @@ -276,6 +278,8 @@ services:
required: false
environment:
- JAVA_TOOL_OPTIONS=-Xmx768m #deployment: 1408m
- ELASTICSEARCH_USER=elastic
- ELASTICSEARCH_PASSWORD=gridsuiteelasticsearch
command: --server.port=80 --spring.config.additional-location=/config/
sysctls:
- net.ipv4.ip_unprivileged_port_start=0 # for docker < 20.03.0
Expand Down
6 changes: 6 additions & 0 deletions docker-compose/study/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ services:
required: false
environment:
- JAVA_TOOL_OPTIONS=-Xmx576m
- ELASTICSEARCH_USER=elastic
- ELASTICSEARCH_PASSWORD=gridsuiteelasticsearch
command: --server.port=80 --spring.config.additional-location=/config/
sysctls:
- net.ipv4.ip_unprivileged_port_start=0 # for docker < 20.03.0
Expand Down Expand Up @@ -109,6 +111,8 @@ services:
required: false
environment:
- JAVA_TOOL_OPTIONS=-Xmx768m #deployment: 1086m
- ELASTICSEARCH_USER=elastic
- ELASTICSEARCH_PASSWORD=gridsuiteelasticsearch
command: --server.port=80 --spring.config.additional-location=/config/
sysctls:
- net.ipv4.ip_unprivileged_port_start=0 # for docker < 20.03.0
Expand Down Expand Up @@ -402,6 +406,8 @@ services:
required: false
environment:
- JAVA_TOOL_OPTIONS=-Xmx186m # not used by the native image
- ELASTICSEARCH_USER=elastic
- ELASTICSEARCH_PASSWORD=gridsuiteelasticsearch
command: --server.port=80 --spring.config.additional-location=/config/
sysctls:
- net.ipv4.ip_unprivileged_port_start=0 # for docker < 20.03.0
Expand Down
5 changes: 4 additions & 1 deletion docker-compose/technical/docker-compose.technical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ services:
environment:
- discovery.type=single-node
- LOGSPOUT=ignore
- xpack.security.enabled=false
- xpack.security.enabled=true
- ingest.geoip.downloader.enabled=false
- ES_JAVA_OPTS=-Xms1g -Xmx1g
- action.auto_create_index=filebeat-*
Expand Down Expand Up @@ -100,8 +100,11 @@ services:
- 5601:5601
environment:
- LOGSPOUT=ignore
- ELASTIC_PASSWORD="gridsuitekibana"
depends_on:
- elasticsearch
volumes:
- $PWD/../technical/kibana.yml:/usr/share/kibana/config/kibana.yml:Z
restart: unless-stopped

logstash:
Expand Down
7 changes: 7 additions & 0 deletions docker-compose/technical/kibana.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Default Kibana configuration for docker target
server.host: "0.0.0.0"
server.shutdownTimeout: "5s"
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
monitoring.ui.container.elasticsearch.enabled: true
elasticsearch.username: "kibana_system"
elasticsearch.password: "gridsuitekibana"