mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-19 22:40:40 +00:00
* test: add repartition chaos fuzz target Signed-off-by: WenyXu <wenymedia@gmail.com> * chore: use containerd runtime Signed-off-by: WenyXu <wenymedia@gmail.com> * chore: enable logs Signed-off-by: WenyXu <wenymedia@gmail.com> * chore: correct config Signed-off-by: WenyXu <wenymedia@gmail.com> * fix: unit tests Signed-off-by: WenyXu <wenymedia@gmail.com> --------- Signed-off-by: WenyXu <wenymedia@gmail.com>
19 lines
605 B
YAML
19 lines
605 B
YAML
name: Setup Chaos Mesh
|
|
description: Install and wait for Chaos Mesh
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Chaos Mesh
|
|
shell: bash
|
|
run: |
|
|
helm repo add chaos-mesh https://charts.chaos-mesh.org
|
|
helm repo update chaos-mesh
|
|
kubectl create ns chaos-mesh
|
|
helm install chaos-mesh chaos-mesh/chaos-mesh -n=chaos-mesh --set chaosDaemon.runtime=containerd --set chaosDaemon.socketPath=/run/containerd/containerd.sock --version 2.8.0
|
|
- name: Print Chaos-mesh
|
|
if: always()
|
|
shell: bash
|
|
run: |
|
|
kubectl get po -n chaos-mesh
|