Skip to content

Commit

Permalink
From 2.15.0 to 2.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flavienbwk committed Sep 3, 2024
1 parent ff9dc15 commit 2feb938
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenSearch - Docker - Compose

![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.15.0-blue)
![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.16.0-blue)

Dockerized cluster architecture for OpenSearch with compose.

Expand Down
20 changes: 9 additions & 11 deletions docker-compose.hot-warm.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.7'

services:

# Coordinating node (dedicated)
Expand All @@ -10,7 +8,7 @@ services:
# Needs : heavy CPU, medium memory
os00:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os00
Expand Down Expand Up @@ -53,7 +51,7 @@ services:
# Needs : low CPU, low memory
os01:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms512m -Xmx512m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os01
Expand Down Expand Up @@ -92,7 +90,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os02:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os02
Expand Down Expand Up @@ -131,7 +129,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os03:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os03
Expand Down Expand Up @@ -170,7 +168,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os04:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os04
Expand Down Expand Up @@ -207,7 +205,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os05:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os05
Expand Down Expand Up @@ -244,7 +242,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os06:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os06
Expand Down Expand Up @@ -281,7 +279,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os07:
restart: always
image: opensearchproject/opensearch:2.2.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os07
Expand Down Expand Up @@ -313,7 +311,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.2.0
image: opensearchproject/opensearch-dashboards:2.16.0
logging:
driver: "json-file"
options:
Expand Down
10 changes: 4 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
version: '3.7'

services:

os01:
restart: always
image: opensearchproject/opensearch:2.15.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os01
Expand Down Expand Up @@ -37,7 +35,7 @@ services:

os02:
restart: always
image: opensearchproject/opensearch:2.15.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os02
Expand Down Expand Up @@ -67,7 +65,7 @@ services:

os03:
restart: always
image: opensearchproject/opensearch:2.15.0
image: opensearchproject/opensearch:2.16.0
environment:
OPENSEARCH_JAVA_OPTS: "-Xms1024m -Xmx1024m" # minimum and maximum Java heap size, recommend setting both to 50% of system RAM
node.name: os03
Expand Down Expand Up @@ -97,7 +95,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.15.0
image: opensearchproject/opensearch-dashboards:2.16.0
environment:
OPENSEARCH_HOSTS: '["https://os01:9200","https://os02:9200","https://os03:9200"]' # must be a string with no spaces when specified as an environment variable
DISABLE_INSTALL_DEMO_CONFIG: "true"
Expand Down

0 comments on commit 2feb938

Please sign in to comment.