498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
18 lines
530 B
Bash
18 lines
530 B
Bash
|
|
|
|
pods=("standalone" "datacoord" "proxy" "pulsar" "querynode" "rootcoord" "etcd")
|
|
for pod in ${pods[*]}
|
|
do
|
|
echo "run pod kill chaos test for pod $pod "
|
|
bash chaos_test.sh $pod pod_kill chaos-test
|
|
done
|
|
|
|
worker_pods=("datanode" "indexnode" "proxy" "querynode")
|
|
for pod in ${worker_pods[*]}
|
|
do
|
|
echo "run pod kill chaos test for pod $pod with 2 replicas"
|
|
bash chaos_test.sh $worker_pods pod_kill chaos-test 2
|
|
|
|
echo "run pod failure chaos test for pod $pod with 2 replicas"
|
|
bash chaos_test.sh $worker_pods pod_failure chaos-test 2
|
|
done |