Commit 3975f6eb authored by Saad Ali's avatar Saad Ali

Merge pull request #8816 from a-robinson/tp

Sleep before deleting the cluster to give the controller manager time to
parents caf5b5f0 0188e9af
...@@ -222,5 +222,10 @@ fi ...@@ -222,5 +222,10 @@ fi
### Clean up ### ### Clean up ###
if [[ "${E2E_DOWN,,}" == "true" ]]; then if [[ "${E2E_DOWN,,}" == "true" ]]; then
# Sleep before deleting the cluster to give the controller manager time to
# delete any cloudprovider resources still around from the last test.
# 60 seconds was chosen as an arbitrary bound for how long it should take
# to delete load balancer resources.
sleep 60
go run ./hack/e2e.go ${E2E_OPT} -v --down go run ./hack/e2e.go ${E2E_OPT} -v --down
fi fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment