Commit 1aabc3d1 authored by Geoff Simmons's avatar Geoff Simmons

e2e test runs make targets for the ExternalName test.

parent 82213cbf
......@@ -114,9 +114,7 @@ cd ${MYPATH}/e2e/deleteTLSsecret
echo Example of an ExternalName Service as an Ingress backend
cd ${MYPATH}/../examples/externalname/
./deploy.sh
./verify.sh
./undeploy.sh
make deploy verify undeploy
# Wait for prior versions of the IngressBackends from the previous
# test to delete.
......@@ -130,10 +128,10 @@ set -e
# Since the Service does not exist for a brief time, DNS lookups get
# negative results during this time. We allow verification failures
# for up to 2 minutes.
./deploy.sh
make deploy
N=0
while true; do
if ! ./verify.sh; then
if ! make verify; then
if [ $N -gt 120 ]; then
exit 1
fi
......@@ -144,6 +142,6 @@ while true; do
break
fi
done
./undeploy.sh
make undeploy
exit 0
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