ci: stabilize Linux Podman E2E setup - #1192
Merged
Merged
Conversation
Extract Podman CI setup from PR #1179: - Pin Podman E2E matrix runners to ubuntu-24.04 in .github/workflows/pr-ci.yml - Add hack/ci/setup-podman-linux.sh to manage rootless and rootful runtime configuration, crun enforcement, and AppArmor profiles
✅ Deploy Preview for images-devsy-sh canceled.
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Team Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThe workflow pins Podman integration jobs to Ubuntu 24.04. A new script centralizes rootless and rootful Podman setup, crun configuration, socket handling, environment reporting, and smoke tests. ChangesPodman CI setup
Estimated code review effort: 3 (Moderate) | ~20 minutes Sequence Diagram(s)sequenceDiagram
participant GitHub Actions
participant setup-podman-linux.sh
participant Podman
participant systemd
alt rootless
GitHub Actions->>setup-podman-linux.sh: invoke with rootless
setup-podman-linux.sh->>Podman: verify crun and run smoke test
else rootful
GitHub Actions->>setup-podman-linux.sh: invoke with rootful
setup-podman-linux.sh->>systemd: enable podman.socket
systemd-->>setup-podman-linux.sh: report socket readiness
setup-podman-linux.sh->>Podman: verify crun and run smoke test
end
✨ Finishing Touches 💡 1🛠️ Fix failing CI checks 💡
✨ Simplify code
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
✅ Deploy Preview for devsydev canceled.
|
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.
Summary
Extracted Podman CI setup improvements from PR #1179 to stabilize Linux Podman E2E workflow runs independently:
ubuntu-24.04in.github/workflows/pr-ci.ymlhack/ci/setup-podman-linux.shto configure and validate rootless and rootful Podman setups, enforcecrunOCI runtime, and reload AppArmor profiles when required.github/workflows/pr-ci.ymlto delegate tohack/ci/setup-podman-linux.shSummary by CodeRabbit