Skip to content

Commit

Permalink
Update Elasticsearch and Localstack versions for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Dumas committed Jun 21, 2024
1 parent d1a95d3 commit 552dc3e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ElasticSearchContainer(password: String)
}

object ElasticSearchContainer {
private val Version = "8.13.3"
private val Version = "8.14.1"

val ElasticSearchUser = "elastic"
val ElasticSearchPassword = "password"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import software.amazon.awssdk.services.s3.S3AsyncClient

object LocalStackS3 {
val ServiceType = Service.S3
val Version = "3.4"
val Version = "3.5"

def localstackS3(): Resource[IO, LocalStackV2Container] = {

Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/paradox/docs/delta/api/assets/version.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"blazegraph": "2.1.6-RC",
"postgresql": "15.7",
"elasticsearch": "8.13.3",
"elasticsearch": "8.14.1",
"remoteStorage": "1.10.0"
},
"plugins": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
version: "3.3"
services:
delta:
depends_on:
- blazegraph
- elasticsearch
- postgres
image: bluebrain/nexus-delta:1.10.0-M5
image: bluebrain/nexus-delta:1.10.0-M13
environment:
DELTA_PLUGINS: "/opt/docker/plugins/"
DELTA_EXTERNAL_CONF: "/config/delta.conf"
Expand All @@ -23,7 +22,7 @@ services:
memory: 1024M

elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:8.13.3"
image: "docker.elastic.co/elasticsearch/elasticsearch:8.14.1"
environment:
discovery.type: "single-node"
bootstrap.memory_lock: "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ $ curl http://localhost/v1/version | jq
"delta": "1.10.0",
"dependencies": {
"blazegraph": "2.1.6-SNAPSHOT",
"elasticsearch": "8.13.3",
"elasticsearch": "8.14.1",
"postgres": "15.7"
},
"environment": "dev",
Expand Down
5 changes: 2 additions & 3 deletions tests/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.3"
networks:
default:
ipam:
Expand Down Expand Up @@ -108,7 +107,7 @@ services:
- 9090:8080

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.3
image: docker.elastic.co/elasticsearch/elasticsearch:8.14.1
environment:
ES_JAVA_OPTS: "-Xmx2G"
discovery.type: "single-node"
Expand Down Expand Up @@ -160,7 +159,7 @@ services:
- ./config:/config

localstack:
image: localstack/localstack:3.4
image: localstack/localstack:3.5
environment:
AWS_ACCESS_KEY_ID: "MY_ACCESS_KEY"
AWS_SECRET_ACCESS_KEY: "CHUTCHUT"
Expand Down

0 comments on commit 552dc3e

Please sign in to comment.