You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the krun runtime handler with podman, commands with special characters often fail due to an apparent bug in parsing. For example, the following command works fine:
$ podman run --rm alpine /bin/sh -c 'ls && sleep 30'
bin
dev
...
But the following command fails:
$ podman run --rm --annotation run.oci.handler=krun alpine /bin/sh -c 'ls && sleep 30'
[2025-07-24T20:13:40Z ERROR devices::virtio::console::device] Couldn't get terminal dimensions: ENOTTY: Not a typewriter
[2025-07-24T20:13:40Z ERROR devices::virtio::console::device] Couldn't get terminal dimensions: ENOTTY: Not a typewriter
ls: 66: No such file or directory
ls: sleep: No such file or directory
ls: 30: No such file or directory