-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* try to run test plan on ci * remove broken parameters option * move workflow definition to bottom * put job definition in jobs group * remove undefined executor configuration * use go-test tools and restore parameterization * define executor explicitly * define executor through parameters * back to ci-go * remove extraneous steps * add prepare step * fix path to test definition * fix whitespace * add k8s test and use it in ci * trigger testplan only on merge to master Co-authored-by: acruikshank <acruikshank@example.com>
- Loading branch information
1 parent
1bdc558
commit 43d46f0
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[client] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[metadata] | ||
name = "stress" | ||
|
||
[global] | ||
plan = "graphsync" | ||
case = "stress" | ||
total_instances = 2 | ||
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 = "10MB" | ||
latencies = '["50ms", "100ms", "200ms"]' | ||
bandwidths = '["32MiB", "16MiB", "8MiB", "4MiB", "1MiB"]' | ||
concurrency = "10" | ||
|
||
[[groups]] | ||
id = "providers" | ||
instances = { count = 1 } | ||
[groups.resources] | ||
memory = "4096Mi" | ||
cpu = "1000m" | ||
|
||
[[groups]] | ||
id = "requestors" | ||
instances = { count = 1 } | ||
[groups.resources] | ||
memory = "4096Mi" | ||
cpu = "1000m" |