-
Notifications
You must be signed in to change notification settings - Fork 220
CI networking cleanup #2385
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
ckyrouac
wants to merge
3
commits into
bootc-dev:main
Choose a base branch
from
ckyrouac:ci-networking-cleanup
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
CI networking cleanup #2385
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # Pre-built derived image used by test-29 (soft-reboot-selinux-policy). | ||
| # | ||
| # Building this in the CI build phase (network-allowed) avoids a live dnf | ||
| # install inside the test VM, which would be a network access mid-test. | ||
| # | ||
| # What this does: | ||
| # 1. Installs SELinux policy build tools into localhost/bootc | ||
| # 2. Compiles and installs a minimal custom policy module, which changes | ||
| # the compiled policy checksum relative to the base image | ||
| # 3. Cleans up build artifacts so the image passes standard lint checks | ||
| # | ||
| # The resulting image is exposed to the test VM via --bind-storage-ro and | ||
| # pulled into bootc storage before the switch/soft-reboot attempt. | ||
| FROM localhost/bootc | ||
|
|
||
| # Install tools needed to build and install SELinux policy modules. | ||
| # The packages are available from the base image's own repos (no extra | ||
| # repo file needed: localhost/bootc is derived from a centos/fedora/rhel | ||
| # base that ships these in standard repositories). | ||
| RUN dnf install -y selinux-policy-devel checkpolicy policycoreutils \ | ||
| && dnf clean all \ | ||
| && rm -rf /var/log/dnf* /var/log/hawkey.log /var/log/rhsm \ | ||
| /var/cache/dnf /var/lib/dnf /var/lib/rhsm | ||
|
|
||
| # Create a minimal SELinux policy module and install it. | ||
| # Installing a module changes the compiled policy checksum, which is exactly | ||
| # what test-29 needs to verify that soft-reboot is blocked when policies differ. | ||
| RUN <<EORUN | ||
| set -eux | ||
| mkdir -p /tmp/bootc-test-policy | ||
| cd /tmp/bootc-test-policy | ||
| cat > bootc_test_policy.te <<'EOF' | ||
| module bootc_test_policy 1.0; | ||
| require { | ||
| type unconfined_t; | ||
| class file { read write }; | ||
| } | ||
| type bootc_test_t; | ||
| EOF | ||
| checkmodule -M -m -o bootc_test_policy.mod bootc_test_policy.te | ||
| semodule_package -o bootc_test_policy.pp -m bootc_test_policy.mod | ||
| semodule -i bootc_test_policy.pp | ||
| rm -rf /tmp/bootc-test-policy | ||
| rm -rf /var/lib/sepolgen /var/cache/ldconfig | ||
| EORUN |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| [Image] | ||
| Image=registry.access.redhat.com/ubi9/podman:latest | ||
| Image=docker.io/library/alpine:latest | ||
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
But this isn't podman anymore...