Base kstest runner container on F44#1631
Merged
M4rtinK merged 3 commits intorhinstaller:mainfrom Mar 24, 2026
Merged
Conversation
Contributor
Author
|
/kickstart-test --testtype whatever |
Contributor
Author
|
/test-tmt |
0994527 to
99b7a72
Compare
Contributor
Author
|
Updated the PR to disable the ostree test that seems to be the only one failing with the new container. |
99b7a72 to
0cf8566
Compare
Contributor
Author
|
I have split the ostree test disable to a separate commit & disabled the test also on RHEL 9 & 10 as it fails there as well. |
Add SYS_RESOURCE capability and set ulimit -c unlimited before starting libvirt. Libvirt was trying to set RLIMIT_CORE to unlimited (18446744073709551615) which fails in containers with: 'libvirt: error : cannot limit core file size of process to 18446744073709551615: Operation not permitted' By setting ulimit -c unlimited before libvirt starts, libvirt sees that unlimited is already set and doesn't try to change it. The SYS_RESOURCE capability is needed for ulimit -c unlimited to work in containers. Related to: rhinstaller#1458
This is necessary to fix the RAID kickstart tests. We need a new version of libguestfs, as we need it to use a new enough kernel to properly mount RAID volumes created with with 6.19+ kernels. See the mdadm bug for more details: https://bugzilla.redhat.com/show_bug.cgi?id=2436732 Resolves: INSTALLER-4579
The rpm-ostree-container-uefi test does not work with the F44 container. As it this does not seem like a straightforward problem to fix, lets skip the test for now so that we don't block the switch to the F44 container.
0cf8566 to
dc19fe5
Compare
Contributor
|
/test-os-variants |
rvykydal
approved these changes
Mar 24, 2026
KKoukiou
approved these changes
Mar 24, 2026
Contributor
Author
|
/test-tmt |
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
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.
Bump the kickstart test runner container to Fedora 44 base
This is necessary to fix the RAID kickstart tests.
We need a new version of libguestfs, as we need it to use a new enough
kernel to properly mount RAID volumes created with with 6.19+ kernels.
See the mdadm bug for more details:
https://bugzilla.redhat.com/show_bug.cgi?id=2436732
Resolves: INSTALLER-4579
This PR also contains a fix from @KKoukiou necessary to handle issue encountered with the F43 container base - thanks a lot! :)