-
I'm trying to test K3s in a privileged container (kvm is needed to run a VM that will be added in the K3s cluster) but I run into an issue with cgroups v2. After moving PID 1 to another cgroup like this (which worked as expected):
I tried to enable controllers and I had an error:
After some tests on my lab I was able to reproduce this issue when I run docker like this:
But no issue when I run docker like this:
This seems clearly related to this Thanks for your answer ;-) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello Loic! Perhaps replacing:
...with:
...would work? As the latter doesn't make an assumption regarding the current process ID and just adds all processes. However, it's not clear as to why you need this in the first place 🤔 Are all of these controllers missing in your environment? |
Beta Was this translation helpful? Give feedback.
Hello Loic!
Perhaps replacing:
...with:
...would work? As the latter doesn't make an assumption regarding the current process ID and just adds all processes.
However, it's not clear as to why you need this in the first place 🤔 Are all of these controllers missing in your environment?