Skip to content

Commit 97d75b7

Browse files
committed
rename s3-b2 to s3-ext and generify
1 parent e01c3ed commit 97d75b7

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

compose/s3-b2.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

compose/s3-ext.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
services:
2+
cryostat:
3+
environment:
4+
# the endpoint and credentials values below MUST be set by external environment variable
5+
# before running the smoketest.bash script. The region should be overridden to match the
6+
# endpoint, if necessary. The storage mode should be changed if the selected object storage
7+
# provider does not support the object Tag API.
8+
CRYOSTAT_ARCHIVED_RECORDINGS_METADATA_STORAGE_MODE: ${METADATA_STORAGE_MODE:-tagging}
9+
QUARKUS_S3_ENDPOINT_OVERRIDE: ${S3_ENDPOINT}
10+
# STORAGE_EXT_URL: /storage/
11+
QUARKUS_S3_PATH_STYLE_ACCESS: "false"
12+
QUARKUS_S3_AWS_REGION: ${S3_REGION:-us-east-1}
13+
AWS_ACCESS_KEY_ID: ${AWS_ACCESS_KEY_ID}
14+
AWS_SECRET_ACCESS_KEY: ${AWS_SECRET_ACCESS_KEY}
15+
16+
# this stub is just here to satisfy the smoketest script. It is not actually involved in anything.
17+
s3:
18+
image: registry.access.redhat.com/ubi9/ubi-micro
19+
hostname: s3
20+
command: /usr/bin/bash -c "while true; do sleep 5; done"
21+
expose:
22+
- "9000"

0 commit comments

Comments
 (0)