diff options
Diffstat (limited to 'samples')
-rw-r--r-- | samples/ping-multiple-vm.yaml | 42 | ||||
-rw-r--r-- | samples/plugintest.yaml | 22 | ||||
-rw-r--r-- | samples/sfc.yaml | 50 |
3 files changed, 114 insertions, 0 deletions
diff --git a/samples/ping-multiple-vm.yaml b/samples/ping-multiple-vm.yaml new file mode 100644 index 000000000..4055af14b --- /dev/null +++ b/samples/ping-multiple-vm.yaml @@ -0,0 +1,42 @@ +--- +# Sample benchmark task config file measure network latency using ping +# between mutiple virtual machines + + +schema: "yardstick:task:0.1" + +scenarios: +- + type: Ping + options: + packetsize: 200 + host: athena.demo + # key 'targets' for multiple targets + targets: + - ares.demo + - kratos.demo + + runner: + type: Duration + duration: 60 + interval: 1 + + sla: + max_rtt: 10 + action: monitor + +context: + name: demo + image: cirros-0.3.3 + flavor: m1.tiny + user: cirros + + servers: + athena: + floating_ip: true + ares: + kratos: + + networks: + test: + cidr: '10.0.1.0/24' diff --git a/samples/plugintest.yaml b/samples/plugintest.yaml new file mode 100644 index 000000000..dc3b29d63 --- /dev/null +++ b/samples/plugintest.yaml @@ -0,0 +1,22 @@ +--- +# Sample benchmark task config file +# Used for testing sample plugin + +schema: "yardstick:task:0.1" + +scenarios: +- + type: PluginTest + options: + + nodes: + host1: node1.LF + + runner: + type: Iteration + iterations: 1 + +context: + type: Node + name: LF + file: /root/yardstick/etc/yardstick/nodes/compass_sclab_virtual/pod.yaml diff --git a/samples/sfc.yaml b/samples/sfc.yaml new file mode 100644 index 000000000..07c59cbc2 --- /dev/null +++ b/samples/sfc.yaml @@ -0,0 +1,50 @@ +#SFC test case using Tacker as Orchestrator and Netvirt as classifier + +schema: "yardstick:task:0.1" + +scenarios: +- + type: sfc + + host: http_client.sfc_test1 + target: http_server.sfc_test2 + + runner: + type: Iteration + iterations: 1 + interval: 1 + +contexts: +- + name: sfc_test1 + user: root + placement_groups: + pgrp1: + policy: "availability" + servers: + http_client: + flavor: m1.small + image: sfc + floating_ip: true + placement: "pgrp1" + networks: + sfc-net_mgmt: + cidr: '11.0.0.0/24' + +- + + name: sfc_test2 + user: root + placement_groups: + pgrp1: + policy: "availability" + servers: + http_server: + flavor: m1.small + image: sfc + floating_ip: true + placement: "pgrp1" + networks: + sfc-net_mgmt: + cidr: '11.0.0.0/24' + |