Multiple containers in the same cgroup
- Dominant language
- C
- Stars
- 4.1k
- Forks
- 444
- Avg merge
- 1d 18h
- Merged PRs (30d)
- 43
Description
It seems that crun has the same set of issues as https://github.com/opencontainers/runc/issues/3132
Using config.json with `cgroupPath` set:
```console
# crun run -d s3
# crun run -d s4
# crun list
NAME PID STATUS BUNDLE PATH
s3 245092 running /home/kir/git/runc/tst
s4 245107 running /home/kir/git/runc/tst
# diff -u /proc/{245092,245107}/cgroup
(same cgroup)
# crun pause s3
# crun list
NAME PID STATUS BUNDLE PATH
s3 245092 paused /home/kir/git/runc/tst
s4 245107 paused /home/kir/git/runc/tst
(both paused)
root@ubu2004:/home/kir/git/runc/tst# crun run -d s5
(hung)
```
Can we discuss it at https://github.com/opencontainers/runc/issues/3132 @giuseppe?
Contributor guide
Assessment
This issue has not been assessed yet.