-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Free up disk space #4642
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
Free up disk space #4642
Conversation
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds a disk space cleanup step to the E2E workflow to prevent test failures due to insufficient storage when handling large container images.
- Adds a Docker system cleanup step before running E2E tests
- Uses
docker system pruneto remove unused containers, networks, images, and volumes
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
.github/workflows/e2e_sequence.yaml
Outdated
|
|
||
| - name: Free up disk space | ||
| run: | | ||
| docker system prune -a -f --volumes |
Copilot
AI
Sep 25, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's trailing whitespace at the end of line 41. Remove the extra spaces after --volumes to keep the file clean.
| docker system prune -a -f --volumes | |
| docker system prune -a -f --volumes |
37300b8 to
e480023
Compare
2dc7ff5 to
75d62e9
Compare
Signed-off-by: Monokaix <[email protected]>
|
/lgtm |
|
/lgtm |
|
/approve |
1 similar comment
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: hwdef, kingeasternsun The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
Only load images to kind cluster control plane node to free up disk space to avoid e2e failure
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?