From b6c094f98edda683aec70be5d897f250f4a10555 Mon Sep 17 00:00:00 2001 From: Hans Feldt Date: Wed, 13 May 2015 14:24:49 +0200 Subject: add sample benchmark configuration files Change-Id: I21a9e2db57d12e16bc0358bfa6c34c4d1d6a4de0 JIRA: - Signed-off-by: Hans Feldt --- samples/ping-parallel.yaml | 51 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 samples/ping-parallel.yaml (limited to 'samples/ping-parallel.yaml') diff --git a/samples/ping-parallel.yaml b/samples/ping-parallel.yaml new file mode 100644 index 000000000..0e632aaaa --- /dev/null +++ b/samples/ping-parallel.yaml @@ -0,0 +1,51 @@ +--- +# Sample benchmark task config file +# Two scenarios run in parallel using different type of runners + +schema: "yardstick:task:0.1" +run_in_parallel: true + +scenarios: +- + type: Ping + options: + packetsize: 100 + host: client.demo + target: server.demo + runner: + type: Duration + duration: 60 + interval: 1 + sla: + max_rtt: 15 + action: monitor +- + type: Ping + options: + packetsize: 200 + client: client.demo + server: server.demo + runner: + type: Duration + duration: 60 + interval: 1 + sla: + max_rtt: 20 + action: monitor + +context: + name: demo + image: cirros-0.3.3 + flavor: m1.tiny + user: cirros + + servers: + client: + floating_ip: true + server: + + networks: + test: + cidr: '10.0.1.0/24' + external_network: "net04_ext" + -- cgit 1.2.3-korg