Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
7 changes: 6 additions & 1 deletion .github/workflows/github-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,12 @@ 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.34.0;
minio/minio:RELEASE.2025-03-12T18-04-18Z;
minio/mc:RELEASE.2025-03-12T17-29-24Z
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 @@ -15,4 +15,9 @@ 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"
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,57 @@ include:
services:
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.34.0
platform: linux/amd64
container_name: rs3
hostname: rs3
ports:
- 50051:50051
environment:
CONFIG_FILE: /etc/rs3/rs3.toml
depends_on:
- createbucket
volumes:
- ./volumes/rs3.toml:/etc/rs3/rs3.toml
networks:
backend:
ipv4_address: 10.0.0.60
createbucket:
image: minio/mc:RELEASE.2025-03-12T17-29-24Z
depends_on:
minio:
condition: service_healthy
entrypoint: >
/bin/sh -c "
/usr/bin/mc config host add minio http://minio:9000 antithesis antithesis;
/usr/bin/mc rm -r --force minio/rs3-antithesis;
/usr/bin/mc mb minio/rs3-antithesis;
exit 0;
"
networks:
backend:
ipv4_address: 10.0.0.61
minio:
container_name: minio
hostname: minio
image: 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:r
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.62


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 @@ -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