mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
This commit adds QA tests for searchable snapshot on MinIO, similarly to what already exist for S3, GCS and Azure.
36 lines
803 B
YAML
36 lines
803 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-other:
|
|
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"]
|