-
Notifications
You must be signed in to change notification settings - Fork 212
tests: Increase disk size for container-image test #5518
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
Conversation
The container-image test was modified on coreos@300a8a2 to compose a build-chunked-oci image and, which can exhaust the default disk space on the test.
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.
Code Review
This pull request addresses test failures in the container-image test caused by insufficient disk space. The test was recently modified to compose a build-chunked-oci image, which requires more disk space than the default. The PR author increases the minimum disk size for the test by updating its kola configuration. The change is correct, well-justified, and I have no suggestions for improvement.
|
OK.. we are down to just one and has been here for awhile: Well maybe a chmod 777 against /.local/state before the cosa fetch might force this? I am not sure why this is happening.... so let's debug a bit in fcos-e2e.sh |
0a9ac08 to
29d9998
Compare
Set up XDG_STATE_HOME, XDG_CACHE_HOME, and XDG_CONFIG_HOME with proper permissions to ensure cosa operations have write access. Also add explicit cosa buildextend-qemu step since COSA no longer creates QEMU images by default. Assisted-By: ChatGPT-5
|
We got green, I think this just needs a stamp. |
cgwalters
left a comment
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.
Awesome, thanks for tracing this down!
| # Let's force XDG vars to make sure we got permissions | ||
| # when writing to the directories | ||
| # https://specifications.freedesktop.org/basedir-spec/latest/ | ||
| mkdir -p "$PWD/.state" "$PWD/.cache" "$PWD/.config" |
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.
Offhand I suspect the real problem is something in Prow is setting HOME=/
The container-image test was modified on
300a8a2 to compose a build-chunked-oci image and, which can exhaust the default disk space on the test.