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 f2779e7 commit 258ba1fCopy full SHA for 258ba1f
.github/workflows/build-kind.yaml
@@ -91,8 +91,10 @@ jobs:
91
kubectl logs $POD -n $NAMESPACE -f > build/_output/test-logs/perf-go-client.log 2>&1 &
92
TAIL_PID=$!
93
# port forward the http port
94
- kubectl port-forward -n $NAMESPACE pod/$POD 8080:8080 > build/_output/test-logs/port-forward.log 2>&1 &
+ 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
98
# 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
CURL_PID=$!
0 commit comments