Skip to content

Commit

Permalink
Fix vl3 ipv6 example failures. (#11315)
Browse files Browse the repository at this point in the history
Signed-off-by: Vitaliy Guschin <vitaliy.guschin@spirent.com>
Co-authored-by: Vitaliy Guschin <vitaliy.guschin@spirent.com>
  • Loading branch information
VitalyGushin and Vitaliy Guschin authored Feb 28, 2024
1 parent 8fd71a3 commit 931700e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/features/vl3-ipv6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ do
ipAddr=$(echo $ipAddr | grep -Eo 'inet6 addr: 2001:.*' | cut -d ' ' -f 3 | cut -d '/' -f 1)
for pinger in $nscs
do
echo $pinger pings $ipAddr
kubectl exec $pinger -n ns-vl3-ipv6 -- ping6 -c2 -i 0.5 $ipAddr || exit
if [ "$nsc" != "$pinger" ]; then
echo $pinger pings $ipAddr
kubectl exec $pinger -n ns-vl3-ipv6 -- ping6 -c2 -i 0.5 $ipAddr || exit
fi
done
done
)
Expand Down

0 comments on commit 931700e

Please sign in to comment.