forked from awslabs/mountpoint-s3-csi-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
S3CSI-7: Add Helm-based CSI driver E2E Test Workflow for SystemdMounter with Scality Storage Integration #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
anurag4DSB
wants to merge
19
commits into
main
Choose a base branch
from
feature/S3CSI-7-enable-e2e-systemd-mounter-tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
S3CSI-7: Add Helm-based CSI driver E2E Test Workflow for SystemdMounter with Scality Storage Integration #11
anurag4DSB
wants to merge
19
commits into
main
from
feature/S3CSI-7-enable-e2e-systemd-mounter-tests
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
We use docker compose here as later on we will add other scality services as well like Vault. This is not needed right now.
This commit adds Helm setup for the CSI driver and integrates with Scality Storage. It includes: By dafult this is deployed as most e2e tests will need this. It can be turned off using `deploy_csi_driver: "false"` - Configurable CSI driver deployment in common E2E test setup - Scality Storage deployment with Docker Compose - S3 endpoint URL configuration for tests - Improved workflow for both controller and Helm E2E tests
This commit extends the CI pipeline with dedicated E2E test workflows: - Adds controller E2E tests with CSI driver disabled - Implements Helm-based E2E tests with full Scality storage integration - Configures test environments with proper S3 endpoint and credentials
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted filessee 1 file with indirect coverage changes @@ Coverage Diff @@
## main #11 +/- ##
==========================================
- Coverage 68.41% 68.36% -0.05%
==========================================
Files 38 38
Lines 2137 2137
==========================================
- Hits 1462 1461 -1
- Misses 588 589 +1
Partials 87 87 🚀 New features to boost your workflow:
|
In `testdriver.go`, modify the `CreateVolume` method to always use standard buckets
Add skip statements to S3 Express test suites in `testsuites/cache.go`
Add skip statements to individual tests with S3 Express in their name
Update to match existing S3 client configuration, but without the retry mechanism as it's not needed for S3-compatible storage
Add a helper function to ensure all S3 clients use path style and custom endpoint
Update any code that creates S3 clients directly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR introduces a comprehensive E2E testing setup for the Mountpoint S3 CSI driver with Scality Storage integration. This mode launches mountpoint-s3 processes managed by systemd on the host node
Changes