lotus/testplans/lotus-soup/_compositions/paych-stress-k8s.toml

63 lines
1.4 KiB
TOML
Raw Normal View History

2020-09-23 11:46:45 +00:00
[metadata]
name = "lotus-soup"
author = "raulk"
[global]
plan = "lotus-soup"
case = "paych-stress"
2021-04-28 14:58:03 +00:00
total_instances = 4 # 2 clients + 1 miners + 1 bootstrapper
2020-09-23 11:46:45 +00:00
builder = "docker:go"
runner = "cluster:k8s"
[global.build]
selectors = ["testground"]
[global.run_config]
exposed_ports = { pprof = "6060", node_rpc = "1234", miner_rpc = "2345" }
[global.build_config]
push_registry=true
go_proxy_mode="remote"
go_proxy_url="http://localhost:8081"
registry_type="aws"
[global.run.test_params]
clients = "2"
2021-04-28 14:58:03 +00:00
miners = "1"
2020-09-23 11:46:45 +00:00
genesis_timestamp_offset = "0"
balance = "100" ## be careful, this is in FIL.
sectors = "10"
random_beacon_type = "mock"
mining_mode = "natural"
# number of lanes to send vouchers on
lane_count = "8"
# number of vouchers on each lane
vouchers_per_lane = "3"
# amount to increase voucher by each time (per lane)
increments = "3" ## in FIL
[[groups]]
id = "bootstrapper"
instances = { count = 1 }
[groups.run.test_params]
role = "bootstrapper"
[[groups]]
id = "miners"
2021-04-28 14:58:03 +00:00
instances = { count = 1 }
2020-09-23 11:46:45 +00:00
[groups.run.test_params]
role = "miner"
[groups.resources]
memory = "2048Mi"
cpu = "100m"
2020-09-23 11:46:45 +00:00
[[groups]]
id = "clients"
# the first client will be on the receiving end; all others will be on the sending end.
instances = { count = 2 }
[groups.run.test_params]
role = "client"
[groups.resources]
memory = "1024Mi"
cpu = "100m"