Skip to content

Commit

Permalink
Update ci.sh (#224)
Browse files Browse the repository at this point in the history
Signed-off-by: John O'Loughlin <john.oloughlin@intel.com>
  • Loading branch information
johnoloughlin committed Dec 5, 2023
1 parent d774e8e commit 09bcd5c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,19 @@ else
exit 1
fi

printf "\n\n Removing vpp app pods \n\n"
kubectl delete -n vpp pod/vpp-app1-kind-control-plane
kubectl delete -n vpp pod/vpp-app2-kind-control-plane
echo "pods deleted"

echo "kubectl get all, app pods should have been removed"
kubectl get all -A

printf "\n vppctl show interface \n\n"
kubectl exec -n vpp pod/vpp-kind-control-plane -- vppctl "sh int"

printf "\n vppctl show memif, only the default socket 0 should be still here \n\n"
kubectl exec -n vpp pod/vpp-kind-control-plane -- vppctl "sh memif"
kubectl delete -n vpp pod/vpp-kind-control-plane
}

Expand Down

0 comments on commit 09bcd5c

Please sign in to comment.