mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-05 20:48:22 +00:00
This solves half of the problem in #46813 by moving the S3 tests to using the shared minio fixture so we at least have some non-3rd-party, constantly running coverage on these tests.
26 lines
558 B
YAML
26 lines
558 B
YAML
version: '3'
|
|
services:
|
|
minio-fixture:
|
|
build:
|
|
context: .
|
|
args:
|
|
bucket: "bucket"
|
|
accessKey: "access_key"
|
|
secretKey: "secret_key"
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "9000"
|
|
command: ["server", "/minio/data"]
|
|
|
|
minio-fixture-for-snapshot-tool:
|
|
build:
|
|
context: .
|
|
args:
|
|
bucket: "bucket"
|
|
accessKey: "sn_tool_access_key"
|
|
secretKey: "sn_tool_secret_key"
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "9000"
|
|
command: ["server", "/minio/data"]
|