master-thesis/code/config.yaml

21 lines
371 B
YAML
Raw Normal View History

2023-05-11 17:44:13 +02:00
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