mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-02-18 03:29:56 +00:00
28 lines
636 B
YAML
28 lines
636 B
YAML
jobs:
|
|
cpu_attack:
|
|
image: docker.io/luckysideburn/kubeinvaders-stress-ng:latest
|
|
command: "stress-ng"
|
|
args:
|
|
- --help
|
|
mem_attack:
|
|
image: docker.io/luckysideburn/kubeinvaders-stress-ng:latest
|
|
command: "stress-ng"
|
|
additional-labels:
|
|
test-label: "test"
|
|
args:
|
|
- --help
|
|
experiments:
|
|
- name: cpu_attack_exp
|
|
job: cpu_attack
|
|
loop: 5
|
|
after:
|
|
check_url: https://google.it
|
|
check_payload: ''
|
|
check_tls_ignore: true
|
|
- name: mem_attack_exp
|
|
job: mem_attack
|
|
loop: 5
|
|
after:
|
|
check_url: https://google.it
|
|
check_payload: ''
|
|
check_tls_ignore: true |