Revision e696c416b6e51ee80f81acea0474fcc21744bf34 authored by Yutaro Hayakawa on 07 June 2023, 05:54:38 UTC, committed by Yutaro Hayakawa on 08 June 2023, 04:40:14 UTC
As we now implemented the support for externalTrafficPolicy in
24e37ed4f42916333335e678db1ae78022ac3e4c.

Signed-off-by: Yutaro Hayakawa <yutaro.hayakawa@isovalent.com>
1 parent 6d4b2f7
Raw File
post_build_agent.sh
#!/usr/bin/env bash

echo "output of following commands are ran on the Jenkins agent itself"
echo "output of: \"ps -ef | grep -i vbox\" "
ps -ef | grep -i vbox

echo "output of: \"ps -ef | grep -i vagrant\" "
ps -ef | grep -i vagrant

echo "output of: \"VBoxManage --version\" "
VBoxManage --version

echo "output of: \"VBoxManage list runningvms\" "
VBoxManage list runningvms

echo "output of: \"VBoxManage list intnets\" "
VBoxManage list intnets
back to top