Revision 3095fcad4adede851df83b88bfebc60ff4ddac0b authored by cilium-renovate[bot] on 21 July 2024, 02:27:05 UTC, committed by cilium-renovate[bot] on 21 July 2024, 02:27:05 UTC
Signed-off-by: cilium-renovate[bot] <134692979+cilium-renovate[bot]@users.noreply.github.com>
1 parent a67227b
Raw File
vagrant_cleanup.sh
#!/usr/bin/env bash

K8S_NODES="${K8S_NODES:-2}"

vagrant destroy -f

i=1
while [ "$i" -le "$K8S_NODES" ]; do
    VBoxManage natnetwork remove --netname natnet$i
    i=$((i+1))
done

VBoxManage natnetwork list
back to top