Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/github-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
password: ${{ secrets.ANTITHESIS_PASSWORD }}
github_token: ${{ secrets.ANTITHESIS_GH_PAT }}
config_image: us-central1-docker.pkg.dev/molten-verve-216720/responsive-repository/e2e-test-config-${{ inputs.test-type }}:${{ steps.kafka_client_version.outputs.KAFKA_CLIENT_VERSION }}
images: us-central1-docker.pkg.dev/molten-verve-216720/responsive-repository/e2e-test:${{ steps.kafka_client_version.outputs.KAFKA_CLIENT_VERSION }};docker.io/mongo:5.0;public.ecr.aws/j8q9y0n6/responsiveinc/rs3-antithesis:0.1.0-main.30.0
images: us-central1-docker.pkg.dev/molten-verve-216720/responsive-repository/e2e-test:${{ steps.kafka_client_version.outputs.KAFKA_CLIENT_VERSION }};docker.io/mongo:5.0;public.ecr.aws/j8q9y0n6/responsiveinc/rs3-antithesis:0.1.0-main.37.0;docker.io/minio/minio:RELEASE.2025-03-12T18-04-18Z
description: "responsive antithesis test run"
email_recipients: "antithesis-responsive-aaaamurlsqy6e3hxnx6ksnec5y@antithesisgroup.slack.com"
additional_parameters: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ADD base/config/volumes/scylla /volumes/scylla
ADD base/config/volumes/scylla2 /volumes/scylla2
ADD base/config/volumes/scylla3 /volumes/scylla3
ADD base/config/volumes/kafka /volumes/kafka
ADD base/config/volumes/minio /volumes/minio

COPY async/config/rs3.toml volumes/rs3.toml
COPY async/config/docker-compose.yml /docker-compose.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ id = "b1a45157-e2f0-4698-be0e-5bf3a9b8e9d1"
pss = [{ id = 0 }, { id = 1 }, { id = 2 }, { id = 3 }, { id = 4 }, { id = 5 }, { id = 6 }, { id = 7 }]

[cloud_provider]
provider = "InMemory"
provider = "Aws"

[cloud_provider.aws]
region = ""
bucket = "rs3-antithesis"
s3_endpoint = "http://minio:9000"
s3_retry_timeout_millis = 1800000
Original file line number Diff line number Diff line change
@@ -1,16 +1,40 @@
include:
- docker-compose-base.yml
services:
minio:
container_name: minio
hostname: minio
image: docker.io/minio/minio:RELEASE.2025-03-12T18-04-18Z
command: server /minio --console-address ":9001"
ports:
- "9000:9000"
- "9001:9001"
volumes:
- ./volumes/minio/data:/minio:rw
- ./volumes/minio/etc:/etc/minio:ro
environment:
- MINIO_ACCESS_KEY_FILE=/etc/minio/insecure.access.key
- MINIO_SECRET_KEY_FILE=/etc/minio/insecure.secret.key
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 1s
timeout: 10s
retries: 100
networks:
backend:
ipv4_address: 10.0.0.61
rs3:
# Remember to update the image in github-e2e.yaml as well
image: public.ecr.aws/j8q9y0n6/responsiveinc/rs3-antithesis:0.1.0-main.30.0
image: public.ecr.aws/j8q9y0n6/responsiveinc/rs3-antithesis:0.1.0-main.37.0
platform: linux/amd64
container_name: rs3
hostname: rs3
ports:
- 50051:50051
environment:
CONFIG_FILE: /etc/rs3/rs3.toml
AWS_ACCESS_KEY_ID: antithesis
AWS_SECRET_ACCESS_KEY: antithesis
volumes:
- ./volumes/rs3.toml:/etc/rs3/rs3.toml
networks:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
antithesis
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
antithesis
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ADD base/config/volumes/mongo /volumes/mongo
ADD base/config/volumes/mongo2 /volumes/mongo2
ADD base/config/volumes/mongo3 /volumes/mongo3
ADD base/config/volumes/kafka /volumes/kafka
ADD base/config/volumes/minio /volumes/minio

COPY regression/config/rs3.toml volumes/rs3.toml
COPY regression/config/docker-compose.yml /docker-compose.yml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ id = "013a57c3-16b3-44be-8de4-0d1083671cc6"
pss = [{ id = 0 }, { id = 1 }, { id = 2 }, { id = 3 }, { id = 4 }, { id = 5 }, { id = 6 }, { id = 7 }]

[cloud_provider]
provider = "InMemory"
provider = "Aws"

[cloud_provider.aws]
region = ""
bucket = "rs3-antithesis"
s3_endpoint = "http://minio:9000"
Loading