Our system doesn't stream logs out from Kata Containers
Dockerfile
FROM busybox:stable-musl
COPY --chmod=755 counter.sh /counter.sh
ENTRYPOINT ["/bin/sh", "/counter.sh"]
counter.sh
#!/bin/sh
i=0
while true; do
echo "$i"
i=$((i + 1))
sleep 1
done
Commands
docker build --platform linux/amd64 -t ghcr.io/mdobush/compute-echo-server:kata-counter .
docker push ghcr.io/mdobush/compute-echo-server:kata-counter
datumctl compute deploy kata-counter
--image=ghcr.io/mdobush/compute-echo-server:kata-counter
--runtime-class=general-purpose
--city=DFW --min=1 -y
Expected: log viewer shows 0, 1, 2, ... incrementing every second
Actual: no log output at all for the kata-deployed instance
Our system doesn't stream logs out from Kata Containers
Dockerfile
counter.sh
Commands
docker build --platform linux/amd64 -t ghcr.io/mdobush/compute-echo-server:kata-counter .
docker push ghcr.io/mdobush/compute-echo-server:kata-counter
datumctl compute deploy kata-counter
--image=ghcr.io/mdobush/compute-echo-server:kata-counter
--runtime-class=general-purpose
--city=DFW --min=1 -y
Expected: log viewer shows 0, 1, 2, ... incrementing every second
Actual: no log output at all for the kata-deployed instance