🧪 Add chaos testing example #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ydb-slo-action-test-init | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
github_pull_request_number: | |
required: true | |
jobs: | |
test-ydb-slo-action-init: | |
name: Test YDB SLO Action Init | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
sdk: ['sdk-1', 'sdk-2'] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Initialize YDB SLO Test | |
uses: ydb-platform/ydb-slo-action/init@main | |
with: | |
github_pull_request_number: ${{ github.event.inputs.github_pull_request_number }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
sdk_name: ${{ matrix.sdk }} | |
- name: Download chaos testing tool | |
uses: robinraju/release-downloader@v1 | |
with: | |
repository: 'alexei-led/pumba' | |
tag: '0.10.1' | |
fileName: 'pumba_linux_amd64' | |
- name: Run chaos testing | |
run: | | |
echo 'Performing chaos testing...' | |
chmod +x ./pumba_linux_amd64 | |
./pumba_linux_amd64 --random --interval 30s restart re2:^ydb-dynamic & | |
- name: Run user workload | |
run: | | |
echo 'Running user workload...'; | |
sleep 600 |