-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
load test matrix from json file (#4795)
* load test matrix from json file
- Loading branch information
Showing
4 changed files
with
115 additions
and
35 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,11 @@ | ||
{ | ||
"k8s": [], | ||
"images": [ | ||
{ | ||
"image": "debian" | ||
}, | ||
{ | ||
"image": "debian-plus" | ||
} | ||
] | ||
} |
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,93 @@ | ||
{ | ||
"images": [ | ||
{ | ||
"image": "debian", | ||
"marker": "ingresses" | ||
}, | ||
{ | ||
"image": "alpine", | ||
"marker": "vsr" | ||
}, | ||
{ | ||
"image": "alpine", | ||
"marker": "'policies and not policies_rl and not policies_ac and not policies_jwt and not policies_mtls'" | ||
}, | ||
{ | ||
"image": "alpine", | ||
"marker": "'policies_rl or policies_ac or policies_jwt or policies_mtls'" | ||
}, | ||
{ | ||
"image": "debian", | ||
"marker": "'vs and not vs_ipv6 and not vs_rewrite and not vs_responses and not vs_grpc and not vs_redirects and not vs_externalname and not vs_externaldns and not vs_certmanager'" | ||
}, | ||
{ | ||
"image": "debian", | ||
"marker": "'vs_grpc or vs_redirects or vs_externalname or vs_externaldns'" | ||
}, | ||
{ | ||
"image": "debian", | ||
"marker": "'vs_responses or vs_ipv6 or vs_rewrite or vs_certmanager'" | ||
}, | ||
{ | ||
"image": "ubi", | ||
"marker": "ts" | ||
}, | ||
{ | ||
"image": "debian-plus", | ||
"marker": "'vs and not vs_ipv6 and not vs_rewrite and not vs_responses and not vs_grpc and not vs_redirects and not vs_externalname and not vs_externaldns and not vs_certmanager'" | ||
}, | ||
{ | ||
"image": "debian-plus", | ||
"marker": "'vs_grpc or vs_redirects or vs_externalname or vs_externaldns'" | ||
}, | ||
{ | ||
"image": "debian-plus", | ||
"marker": "'vs_responses or vs_ipv6 or vs_rewrite or vs_certmanager'" | ||
}, | ||
{ | ||
"image": "debian-plus", | ||
"marker": "ts" | ||
}, | ||
{ | ||
"image": "alpine-plus", | ||
"marker": "ingresses" | ||
}, | ||
{ | ||
"image": "alpine-plus", | ||
"marker": "vsr" | ||
}, | ||
{ | ||
"image": "ubi-plus", | ||
"marker": "'policies and not policies_ac and not policies_jwt and not policies_mtls'" | ||
}, | ||
{ | ||
"image": "ubi-plus", | ||
"marker": "'policies_ac or policies_jwt or policies_mtls'" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "appprotect_waf_policies_allow" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "'appprotect_waf_policies and not appprotect_waf_policies_allow'" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "appprotect_waf_policies_grpc" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "'appprotect_watch or appprotect_batch or appprotect_integration'" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "'dos and not dos_learning'" | ||
}, | ||
{ | ||
"image": "debian-plus-nap", | ||
"marker": "dos_learning" | ||
} | ||
], | ||
"k8s": [] | ||
} |
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