Skip to content

Commit 6aef73a

Browse files
author
Tim Middleton
committed
More test updates
1 parent 853ed25 commit 6aef73a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/build-kind.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,26 +67,20 @@ jobs:
6767
shell: bash
6868
run: |
6969
NAMESPACE=coherence-perf
70+
kubectl exec -it -n $NAMESPACE perf-cluster-0 -c coherence -- /coherence-operator/utils/cohctl get caches -o wide
7071
# Put the tail into the background
7172
POD=$(kubectl get pods -n $NAMESPACE | grep perf-go-client | awk '{print $1}')
7273
kubectl logs $POD -n $NAMESPACE -f > build/_output/test-logs/perf-go-client.log 2>&1 &
7374
TAIL_PID=$!
74-
7575
# port forward the http port
7676
kubectl port-forward -n $NAMESPACE pod/$POD 8080:8080 > build/_output/test-logs/port-forward.log 2>&1 &
7777
PORT_FORWARD_PID=$!
78-
7978
# run curl requests
8079
while : ; do curl -s -v http://localhost:8080/api/schools?q=[1-2] | jq length; sleep 0.5; done > build/_output/test-logs/curl.log 2>&1 &
8180
CURL_PID=$!
82-
8381
# Start the rolling restart
8482
./scripts/kind/roll-cluster.sh | tee build/_output/test-logs/rolling-restart.log
85-
86-
make undeploy-test-schools
87-
8883
kill -9 $CURL_PID && sleep 5 && kill -9 $PORT_FORWARD_PID && kill -9 $TAIL_PID
89-
9084
9185
- name: Shutdown
9286
# if: github.event_name == 'workflow_dispatch'

0 commit comments

Comments
 (0)