Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sb3: bump elasticseach container to v8.5.0 #20463

Merged
merged 3 commits into from
Dec 8, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ eureka:
environment:
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- discovery.type=single-node
- xpack.security.enabled=false
healthcheck:
test:
- CMD
Expand Down Expand Up @@ -940,6 +941,7 @@ eureka:
environment:
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- discovery.type=single-node
- xpack.security.enabled=false
healthcheck:
test:
- CMD
Expand Down Expand Up @@ -1310,6 +1312,7 @@ eureka:
environment:
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- discovery.type=single-node
- xpack.security.enabled=false
healthcheck:
test:
- CMD
Expand Down Expand Up @@ -1606,6 +1609,7 @@ eureka:
environment:
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- discovery.type=single-node
- xpack.security.enabled=false
healthcheck:
test:
- CMD
Expand Down Expand Up @@ -2668,6 +2672,7 @@ Launch all your infrastructure by running: \`docker compose up -d\`.
environment:
- ES_JAVA_OPTS=-Xms256m -Xmx256m
- discovery.type=single-node
- xpack.security.enabled=false
healthcheck:
test:
- CMD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ services:
environment:
- "ES_JAVA_OPTS=-Xms256m -Xmx256m"
- "discovery.type=single-node"
- "xpack.security.enabled=false"
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:9200/_cluster/health?wait_for_status=green&timeout=10s']
interval: 5s
Expand Down
2 changes: 1 addition & 1 deletion generators/generator-constants.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const javaDependencies = {};
Object.freeze(javaDependencies);

// The version should be coherent with the one from spring-data-elasticsearch project
const ELATICSEARCH_TAG = '7.17.4';
const ELATICSEARCH_TAG = '8.5.0';
const ELATICSEARCH_IMAGE = 'docker.elastic.co/elasticsearch/elasticsearch';

/**
Expand Down