mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 13:22:57 +00:00
* test: add e2e test for region failover * chore: add ci cfg * chore: reduce parallelism to 8 * fix(ci): enable region failure * chore: set sqlx LogLevel to Off * refactor: move help functions to utils
18 lines
448 B
YAML
18 lines
448 B
YAML
name: Setup Kind
|
|
description: Deploy Kind
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Create kind cluster
|
|
shell: bash
|
|
run: |
|
|
helm repo add chaos-mesh https://charts.chaos-mesh.org
|
|
kubectl create ns chaos-mesh
|
|
helm install chaos-mesh chaos-mesh/chaos-mesh -n=chaos-mesh --version 2.6.3
|
|
- name: Print Chaos-mesh
|
|
if: always()
|
|
shell: bash
|
|
run: |
|
|
kubectl get po -n chaos-mesh
|