Skip to content

Commit 450df29

Browse files
committed
firelens-stability: implementation of firelens stability test framework
Signed-off-by: Matthew Fala <[email protected]>
1 parent 6629f7e commit 450df29

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+8229
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ containerjet/
66
dist/
77
node_modules/
88
data-private/
9-
task-definitions/
9+
./task-definitions/
1010
test-config/
1111
.env
1212
oncall

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@
3333
"${workspaceFolder}/**/*.js"
3434
],
3535
"preLaunchTask": "npm: build",
36+
},
37+
{
38+
"type": "node",
39+
"request": "launch",
40+
"name": "Suite Launch",
41+
"runtimeArgs": [
42+
"-r",
43+
"ts-node/register"
44+
],
45+
"args": [
46+
"app.ts"
47+
],
48+
"sourceMaps": true,
49+
"cwd": "${workspaceRoot}/apps/suite-launch"
3650
}
3751
]
3852
}

apps/firelens-stability/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
test-collections/
2+
test-suite/*/yield/
3+
test-suite/*/staged/
4+
test-suite-examples/*/yield/
5+
test-suite-examples/*/staged/
6+
.vscode/decommissioned/
7+
app.ts
8+
bin/*app*
9+
archives/
10+
auto/
11+
bin/
12+
test-suite/
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"config": {
3+
"template": "golden-path-mountebank-fargate-v01-11-2023",
4+
"taskCount": 1
5+
},
6+
"definitions": {
7+
"include_onepod": false,
8+
"kbps_throughput_tcp": 10,
9+
"kbps_throughput_tail": 10,
10+
"kbps_throughput_forward": 10,
11+
12+
"serviceName": "golden-onepod-low-throughput",
13+
"cw_use_mock": true,
14+
"add_forward": true,
15+
"endpoint_mock": "localhost",
16+
"endpoint_flb": "localhost",
17+
"HOSTNAME": "myhostname",
18+
"STAGE": "test",
19+
"LOG_REGION": "us-west-2"
20+
}
21+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"definitions": {
3+
"include_onepod": false,
4+
"kbps_throughput_tcp": 10000,
5+
"kbps_throughput_tail": 10000,
6+
"kbps_throughput_forward": 10000
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"definitions": {
3+
"include_onepod": false,
4+
"kbps_throughput_tcp": 10,
5+
"kbps_throughput_tail": 10,
6+
"kbps_throughput_forward": 10
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"definitions": {
3+
"include_onepod": false,
4+
"kbps_throughput_tcp": 10000,
5+
"kbps_throughput_tail": 10000,
6+
"kbps_throughput_forward": 10000
7+
}
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"definitions": {
3+
"include_onepod": true,
4+
"kbps_throughput_tcp": 10,
5+
"kbps_throughput_tail": 10,
6+
"kbps_throughput_forward": 10,
7+
"cw_use_mock": false
8+
}
9+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"definitions": {
3+
"include_onepod": true,
4+
"kbps_throughput_tcp": 10,
5+
"kbps_throughput_tail": 10,
6+
"kbps_throughput_forward": 10
7+
},
8+
"config": {
9+
"n_tasks": 40
10+
}
11+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"definitions": {
3+
"testId": "{{managed.suiteName}}-{{managed.caseName}}"
4+
},
5+
"config": {
6+
"cluster": "{{managed.executionName}}-{{managed.suiteName}}-{{managed.executionId}}",
7+
"template": "golden-path-mountebank-fargate-v01-11-2023"
8+
}
9+
}

0 commit comments

Comments
 (0)