-
I followed this Red Hat guide on how to use Quadlet to improve systemd container management and met the following issue:
The content of the [Unit]
Description=The sleep container
After=local-fs.target
[Container]
Image=registry.access.redhat.com/ubi9-minimal:latest
Exec=sleep 1000
[Install]
# Start by default on boot
WantedBy=multi-user.target default.target Qualet service output:
$ getsebool container_manage_cgroup
container_manage_cgroup --> on What helps is adding the following line into the
My system info:
Podman version:
Podman info output:
|
Beta Was this translation helpful? Give feedback.
Answered by
vpetrigo
Oct 10, 2023
Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Seems like I found out why this happened:
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
After I removed that with the following line everything works as expected:
grubby --update-kernel=ALL --remove-args "systemd.unified_cgroup_hierarchy=0"