Skip to content

Commit

Permalink
remove retry count from test ring bucket name
Browse files Browse the repository at this point in the history
Configuration of the test environement is done through an image built in the build-test-image job,
this image contains the list of location details used to initialize the locations. This list isn't
updated when only retrying the end to end test jobs, and the bucket is create using the env var passed
to the pod. So we endup creating the bucket with the updated retry count but configure the location
with the old bucket name which fails as pensieve won't be able to find that bucket.

Issue: ZENKO-4414
  • Loading branch information
Kerkesni committed Jan 24, 2025
1 parent cfda050 commit 7d7a397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/end2end.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ env:
RING_S3C_SECRET_KEY: verySecretKey1
RING_S3C_ENDPOINT: http://s3c.local:8000
RING_S3C_BACKEND_SOURCE_LOCATION: rings3cbackendingestion
RING_S3C_INGESTION_SRC_BUCKET_NAME: ingestion-test-src-bucket-${{ github.run_id }}-${{ github.run_attempt }}
RING_S3C_INGESTION_SRC_BUCKET_NAME: ingestion-test-src-bucket-${{ github.run_id }}
# CTST end2end tests
NOTIF_DEST_NAME: "destination1"
NOTIF_DEST_TOPIC: "destination-topic-1"
Expand Down

0 comments on commit 7d7a397

Please sign in to comment.