Skip to content

Commit 9dc412b

Browse files
author
Tim Middleton
committed
further script updates
1 parent 258ba1f commit 9dc412b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-kind.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ jobs:
9494
echo "Pod: $POD"
9595
kubectl port-forward -n $NAMESPACE pod/${POD} 8080:8080 > build/_output/test-logs/port-forward.log 2>&1 &
9696
PORT_FORWARD_PID=$!
97-
sleep 5
97+
echo "Sleep 10..."
98+
sleep 10
9899
# run curl requests
99-
while : ; do curl -s -v http://127.0.0.1:8080/api/schools?q=[1-2] | jq length; sleep 0.5; done > build/_output/test-logs/curl.log 2>&1 &
100+
while : ; do curl -s -v http://127.0.0.1:8080/api/schools?q=[1-2] | jq length || true ; sleep 0.5; done > build/_output/test-logs/curl.log 2>&1 &
100101
CURL_PID=$!
101102
# Start the rolling restart
102103
./scripts/kind/roll-cluster.sh | tee build/_output/test-logs/rolling-restart.log

0 commit comments

Comments
 (0)