Support rootful podman beaker tests#83
Draft
traylenator wants to merge 4 commits into
Draft
Conversation
Even a `--privileged` rootless podman container is unable to do some operations. If `podman_rootful` is set `true` (default false) then `/run/podman/podman.socket` What cannot be done in a privileged rootless container ? Obvious one is install kernel modules for instance. The vast majority of modules will be fine with rootless containers and its much closer to what folk typically run on the their laptops so the current default makes a sensible default.
bastelfreak
reviewed
Oct 21, 2025
| run: | | ||
| systemctl start --user podman.socket | ||
| echo "DOCKER_HOST=unix:///run/user/$(id -u)/podman/podman.sock" >> "$GITHUB_ENV" | ||
| - if: ${{ inputs.podman_rootful }} |
Member
There was a problem hiding this comment.
Should we skip the action above if rootful is true? We don't need a system- and a user- service
Contributor
Author
|
While this works on my laptap if I set up the podman socket this way it unfortunately hangs when trying the SSH into the container in CI. voxpupuli/puppet-cvmfs#230 |
Contributor
Author
|
Another alternative, run |
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.
Even a
--privilegedrootless podman container is unable to do some operations.If
podman_rootfulis settrue(default false) then/run/podman/podman.socketWhat cannot be done in a privileged rootless container ? Obvious one is interact with kernel modules for instance.
The vast majority of modules will be fine with rootless containers and its much closer to what folk typically run on the their laptops so the current behaviour makes a sensible default.