-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
cilium/little-vm-helper
#199Labels
area/CIContinuous Integration testing issue or flakeContinuous Integration testing issue or flakeci/flakeThis is a known failure that occurs in the tree. Please investigate me!This is a known failure that occurs in the tree. Please investigate me!
Description
CI failure
I've seen this failure a couple times in the past day. It looks like the LVH VM took longer than usual to provision and breached the timeout. It's not immediately clear what is taking too long from scanning through the logs.
Run n=0
n=0
started=0
until [ "$n" -ge 300 ]; do
if grep -E ".*OK.*Started.*ssh.*" /tmp/console.log; then
started=1
break
elif grep -E ".*FAILED.*Failed.*to.*start.*ssh*" /tmp/console.log; then
cat /tmp/console.log
exit 40
fi
n=$((n+1))
sleep 1
done
if [ $started -eq 0 ]; then
cat /tmp/console.log
exit 41
fi
n=0
success=0
until [ "$n" -ge 5 ]; do
if ssh -p 2222 -o "StrictHostKeyChecking=no" root@localhost exit; then
success=1
break
fi
n=$((n+1))
sleep 1
done
if [ $success -eq 0 ]; then
cat /tmp/console.log
exit 42
fi
--snip--
[ OK ] Reached target multi-user.target - Multi-User System.
[ OK ] Reached target graphical.target - Graphical Interface.
Starting systemd-update-utmp-runle…- Record Runlevel Change in UTMP...
[ OK ] Finished systemd-update-utmp-runle…e - Record Runlevel Change in UTMP.
Debian GNU/Linux trixie/sid kind-bpf-next ttyS0
kind-bpf-next login:
Error: Process completed with exit code 41.
Full output in this gist: https://gist.github.com/thorn3r/d9d138759c8bbc639e8da138803af243
Workflow run: https://github.com/cilium/cilium/actions/runs/8978306359/job/24662060373
PR: #32353
Metadata
Metadata
Assignees
Labels
area/CIContinuous Integration testing issue or flakeContinuous Integration testing issue or flakeci/flakeThis is a known failure that occurs in the tree. Please investigate me!This is a known failure that occurs in the tree. Please investigate me!