Skip to content

Commit d4969b5

Browse files
Add stress-ng benchmark job in workflow
Signed-off-by: nikimanoledaki <[email protected]>
1 parent c165d4f commit d4969b5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/workflow.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
on: {}
2+
3+
jobs:
4+
stress-ng-test:
5+
runs-on: ubuntu-22.04
6+
steps:
7+
- run: |
8+
# the action to take here depends on the Functional Unit of the CNCF project. wait for amount of time, for resources
9+
kubectl apply -f https://raw.githubusercontent.com/falcosecurity/cncf-green-review-testing/main/kustomize/falco-driver/ebpf/stress-ng.yaml
10+
# the one above is a workflow with a single benchmark job, but if your workflow needs multiple benchmark job, it is enough to define additional steps:
11+
# e.g. for redis-test: kubectl apply -f https://github.com/falcosecurity/cncf-green-review-testing/blob/main/kustomize/falco-driver/ebpf/redis.yaml
12+
# for event-generator-test -> kubectl apply -f https://github.com/falcosecurity/cncf-green-review-testing/blob/main/kustomize/falco-driver/ebpf/falco-event-generator.yaml
13+
wait 15m
14+
- run: |
15+
kubectl delete -f https://raw.githubusercontent.com/falcosecurity/cncf-green-review-testing/main/kustomize/falco-driver/ebpf/stress-ng.yaml # other Falco tests:

0 commit comments

Comments
 (0)