Skip to content

Commit

Permalink
Merge pull request #165 from medizininformatik-initiative/update/blaze
Browse files Browse the repository at this point in the history
Update Blaze to v0.27
  • Loading branch information
alexanderkiel authored Jun 14, 2024
2 parents 7fdaa29 + 0adcc62 commit 1818e33
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/integration-test/basic-auth/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
data-store:
image: "samply/blaze:0.26.2"
image: "samply/blaze:0.27"
healthcheck:
test: ["CMD-SHELL", "curl --fail -s http://localhost:8080/health"]
interval: "5s"
Expand Down
2 changes: 1 addition & 1 deletion .github/integration-test/no-auth/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
data-store:
image: "samply/blaze:0.26.2"
image: "samply/blaze:0.27"
healthcheck:
test: ["CMD-SHELL", "curl --fail -s http://localhost:8080/health"]
interval: "5s"
Expand Down
2 changes: 1 addition & 1 deletion .github/integration-test/oauth/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:
keycloak:
condition: service_healthy
data-store:
image: "samply/blaze:0.26.2"
image: "samply/blaze:0.27"
healthcheck:
test: ["CMD-SHELL", "curl --fail -s http://localhost:8080/health"]
interval: "5s"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main
- develop
tags:
- '*.*.*'
- 'v*.*.*'
pull_request:
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
data-store:
image: "samply/blaze:0.26"
image: "samply/blaze:0.27"
environment:
BASE_URL: "http://localhost:8082"
JAVA_TOOL_OPTIONS: "-Xmx1g"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DataStoreIT {

@Container
@SuppressWarnings("resource")
private final GenericContainer<?> blaze = new GenericContainer<>("samply/blaze:0.26")
private final GenericContainer<?> blaze = new GenericContainer<>("samply/blaze:0.27")
.withImagePullPolicy(PullPolicy.alwaysPull())
.withEnv("LOG_LEVEL", "debug")
.withExposedPorts(8080)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class StructuredQueryServiceIT {

@Container
@SuppressWarnings("resource")
private static final GenericContainer<?> blaze = new GenericContainer<>("samply/blaze:0.26")
private static final GenericContainer<?> blaze = new GenericContainer<>("samply/blaze:0.27")
.withImagePullPolicy(PullPolicy.alwaysPull())
.withEnv("LOG_LEVEL", "debug")
.withEnv("DB_SEARCH_PARAM_BUNDLE", "/app/custom-search-parameters.json")
Expand Down

0 comments on commit 1818e33

Please sign in to comment.