Replies: 1 comment 1 reply
-
Kernel panics should be reported to whoever provides your kernel or to the upstream. Podman does not effect this. Looks like something in the cgroups subsystem is blowing up. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I have an issue when running a container with a memory limit.
I used the next commands for clean reproduction (set limit as 5M and write the files in infinite loop):
works as expected:
podman run -dt --name=container1 --memory=5m --network=none docker.io/arm64v8/busybox:1.35.0 sh -c 'i=0; while true; do echo $i; MEMBLOB$i=$(dd if=/dev/urandom bs=1k count=1024); i=$((i+1)); sleep 1; done' > /dev/null
system fails with attached logs:

podman run -dt --name=container1 --memory=5m --network=none docker.io/arm64v8/busybox:1.35.0 sh -c 'i=0; while true; do echo $i; MEMBLOB$i=$(dd if=/dev/urandom bs=5k count=1024); i=$((i+1)); sleep 1; done' > /dev/null
the difference between the commands is that in the first case dd command writes files with size 1M and in the second case writes files with size 5M(equals or higher than the mem limit).
Could someone advise what can be the issue?
podmanInfo.txt
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions