未验证 提交 6d137420 编写于 作者: Z zhuwenxing 提交者: GitHub

[skip ci] Add pod kill chaos test github action (#8771)

Signed-off-by: Nzhuwenxing <wenxing.zhu@zilliz.com>
上级 24b83472
name: Pod Kill Chaos Test
on:
workflow_dispatch:
jobs:
test-pod-kill-chaos:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
pod: [datacoord, datanode, indexcoord, indexnode, proxy, pulsar, querycoord, querynode, rootcoord, etcd, minio]
steps:
- name: Creating kind cluster
uses: helm/kind-action@v1.2.0
- name: Print cluster information
run: |
kubectl config view
kubectl cluster-info
kubectl get nodes
kubectl get pods -n kube-system
helm version
kubectl version
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Deploy Chaos Mesh
shell: bash
run: |
helm repo add chaos-mesh https://charts.chaos-mesh.org
helm search repo chaos-mesh
kubectl create ns chaos-testing
helm install chaos-mesh chaos-mesh/chaos-mesh --namespace=chaos-testing --version v0.5.3 --set chaosDaemon.runtime=containerd --set chaosDaemon.socketPath=/run/containerd/containerd.sock
sleep 60s
kubectl get po -n chaos-testing
- name: Deploy Milvus
shell: bash
run: |
helm repo add milvus https://milvus-io.github.io/milvus-helm
helm repo update
helm install milvus-chaos milvus/milvus --set cluster.enabled=true -n=chaos-testing
kubectl get pods -n chaos-testing
sleep 60s
kubectl get pods -n chaos-testing
kubectl port-forward service/milvus-chaos 19530 -n chaos-testing >/dev/null 2>&1 &
sleep 20s
nc -vz 127.0.0.1 19530
- name: Chaos Test
shell: bash
working-directory: tests/python_client/chaos
run: |
pip install -r ../requirements.txt
pip install --upgrade protobuf
sed -i "s/ALL_CHAOS_YAMLS =.*/ALL_CHAOS_YAMLS = \'chaos_${{ matrix.pod }}_podkill.yaml\'/g" constants.py
cat constants.py
pytest -s -v test_chaos.py --host 127.0.0.1 --log-cli-level=INFO
- name: Verify Pod Kill
if: ${{ always() }}
shell: bash
run: |
#in this step, we can verify whether pod has been killed by pod's age
kubectl get po -n chaos-testing |grep "milvus-chaos"
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册