mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2024-11-16 18:10:50 +01:00
21 lines
371 B
YAML
21 lines
371 B
YAML
|
nodes:
|
||
|
iperf-server:
|
||
|
image: test
|
||
|
command: ["iperf3", "--server", "--one-off"]
|
||
|
|
||
|
iperf-client:
|
||
|
image: test
|
||
|
command: ["iperf3", "--client", "iperf-server", "--time", "10"]
|
||
|
|
||
|
ping-server:
|
||
|
image: test
|
||
|
ping-client:
|
||
|
image: test
|
||
|
command: ["ping", "ping-server"]
|
||
|
|
||
|
events:
|
||
|
- type: network
|
||
|
connect:
|
||
|
- iperf-client
|
||
|
- iperf-server
|