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
{{ message }}
This repository was archived by the owner on May 12, 2021. It is now read-only.
I'm working on IBM Z support for kata. IBM Z is a big endian architecture and the old version of the github.com/containerd/console has a bug. The issue has already been solved for runc see issue with this fix in the console package. The github.com/containerd/console needs to be updated to include the fix. The bug shows up with exec command
$ bundle="/tmp/bundle"
$ rootfs="$bundle/rootfs"
$ mkdir -p "$rootfs"&& (cd "$bundle"&& kata-runtime spec)
$ sudo docker export$(sudo docker create busybox)| tar -C "$rootfs" -xvf -
$ kata-runtime --log=/dev/stdout run --bundle "$bundle" foo
# In another terminal
$ kata-runtime exec -t foo
rpc error: code = Internal desc = Could not run process: container_linux.go:348: starting container process caused "open /dev/pts/4294967296: no such file or directory"