Skip to content

Commit

Permalink
From 2.16.0 to 2.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flavienbwk committed Dec 31, 2024
1 parent 2feb938 commit d732134
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 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.16.0-blue)
![OpenSearch version](https://img.shields.io/badge/OpenSearch%20version-2.18.0-blue)

Dockerized cluster architecture for OpenSearch with compose.

Expand Down
18 changes: 9 additions & 9 deletions docker-compose.hot-warm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
# Needs : heavy CPU, medium memory
os00:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -51,7 +51,7 @@ services:
# Needs : low CPU, low memory
os01:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -90,7 +90,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os02:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -129,7 +129,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os03:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -168,7 +168,7 @@ services:
# Needs : medium CPU, heavy memory, high-speed storage
os04:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -205,7 +205,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os05:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -242,7 +242,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os06:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -279,7 +279,7 @@ services:
# Needs : lower-speed CPU, heavy memory, lower-speed storage
os07:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -311,7 +311,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.16.0
image: opensearchproject/opensearch-dashboards:2.18.0
logging:
driver: "json-file"
options:
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:

os01:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -35,7 +35,7 @@ services:

os02:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -65,7 +65,7 @@ services:

os03:
restart: always
image: opensearchproject/opensearch:2.16.0
image: opensearchproject/opensearch:2.18.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 @@ -95,7 +95,7 @@ services:

kibana:
restart: always
image: opensearchproject/opensearch-dashboards:2.16.0
image: opensearchproject/opensearch-dashboards:2.18.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 d732134

Please sign in to comment.