mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-06 16:58:11 +08:00
- Add a basic testground plan for bitswap - Showcases how to emit regressions stats from a testplan - Add CI plumbing to run testplans on push As a result of this PR, also: - Created the ipfs/go-ipfs-regressions repo, which defines stats structures for the output of testplans and the input to regression analysis and tests
34 lines
604 B
TOML
34 lines
604 B
TOML
[metadata]
|
|
name = "bitswap-medium-speed-test"
|
|
|
|
[global]
|
|
plan = "bitswap"
|
|
case = "speed-test"
|
|
total_instances = 5
|
|
builder = "docker:go"
|
|
runner = "cluster:k8s"
|
|
|
|
[global.build_config]
|
|
push_registry=true
|
|
go_proxy_mode="remote"
|
|
go_proxy_url="http://localhost:8081"
|
|
registry_type="aws"
|
|
|
|
[global.run.test_params]
|
|
size = "1MB"
|
|
count = "1000"
|
|
|
|
[[groups]]
|
|
id = "providers"
|
|
instances = { count = 1 }
|
|
[groups.resources]
|
|
memory = "4096Mi"
|
|
cpu = "1000m"
|
|
|
|
[[groups]]
|
|
id = "requestors"
|
|
instances = { count = 4 }
|
|
[groups.resources]
|
|
memory = "4096Mi"
|
|
cpu = "1000m"
|