Skip to content

Commit

Permalink
chore(smoketest): move service dependency declarations into correct f…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
andrewazores committed May 21, 2024
1 parent 1d991d1 commit 37cc8ee
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
5 changes: 0 additions & 5 deletions compose/cryostat.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
version: "3"
services:
cryostat:
depends_on:
db:
condition: service_healthy
s3:
condition: service_healthy
deploy:
resources:
limits:
Expand Down
3 changes: 3 additions & 0 deletions compose/db.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "3"
services:
cryostat:
depends_on:
db:
condition: service_healthy
environment:
QUARKUS_HIBERNATE_ORM_DATABASE_GENERATION: ${DATABASE_GENERATION:-drop-and-create}
QUARKUS_DATASOURCE_USERNAME: cryostat3
Expand Down
3 changes: 3 additions & 0 deletions compose/s3-cloudserver.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "3"
services:
cryostat:
depends_on:
s3:
condition: service_healthy
environment:
STORAGE_BUCKETS_ARCHIVES_NAME: archivedrecordings
QUARKUS_S3_ENDPOINT_OVERRIDE: http://s3:8000
Expand Down
3 changes: 3 additions & 0 deletions compose/s3-localstack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "3"
services:
cryostat:
depends_on:
s3:
condition: service_healthy
environment:
STORAGE_BUCKETS_ARCHIVES_NAME: archivedrecordings
QUARKUS_S3_ENDPOINT_OVERRIDE: http://s3:4566
Expand Down
3 changes: 3 additions & 0 deletions compose/s3-minio.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "3"
services:
cryostat:
depends_on:
s3:
condition: service_healthy
environment:
STORAGE_BUCKETS_ARCHIVES_NAME: archivedrecordings
QUARKUS_S3_ENDPOINT_OVERRIDE: http://s3:9000
Expand Down
3 changes: 3 additions & 0 deletions compose/s3-seaweed.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: "3"
services:
cryostat:
depends_on:
s3:
condition: service_healthy
environment:
STORAGE_BUCKETS_ARCHIVES_NAME: archivedrecordings
CRYOSTAT_SERVICES_REPORTS_STORAGE_CACHE_NAME: archivedreports
Expand Down

0 comments on commit 37cc8ee

Please sign in to comment.