-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 827 Bytes
/
Copy pathsoak.yml
File metadata and controls
35 lines (29 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Autoscaling Soak Test
on:
workflow_dispatch:
inputs:
soak_duration_minutes:
description: "Duration to run autoscaling soak in minutes"
default: "10"
required: false
jobs:
soak:
name: Autoscaling Soak Test (kind)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: true
- name: Create kind cluster
uses: helm/kind-action@v1.10.0
with:
cluster_name: agentrax-soak
- name: Install cluster dependencies
run: make deploy-deps
- name: Run Autoscaling Soak Suite
run: make test-e2e-soak
env:
SOAK_DURATION_MINUTES: ${{ github.event.inputs.soak_duration_minutes }}