We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 258ba1f commit 9dc412bCopy full SHA for 9dc412b
.github/workflows/build-kind.yaml
@@ -94,9 +94,10 @@ jobs:
94
echo "Pod: $POD"
95
kubectl port-forward -n $NAMESPACE pod/${POD} 8080:8080 > build/_output/test-logs/port-forward.log 2>&1 &
96
PORT_FORWARD_PID=$!
97
- sleep 5
+ echo "Sleep 10..."
98
+ sleep 10
99
# run curl requests
- 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 &
101
CURL_PID=$!
102
# Start the rolling restart
103
./scripts/kind/roll-cluster.sh | tee build/_output/test-logs/rolling-restart.log
0 commit comments