Merge "Adding sample yardstick.conf & pod files to help describe the topology"
[yardstick.git] / tests / opnfv / test_cases / opnfv_yardstick_tc043.yaml
1 ---
2
3 schema: "yardstick:task:0.1"
4 description: >
5     Yardstick TC043 config file;
6     Measure latency between NFVI nodes using ping.
7
8 {% set host = host or "node1.LF" %}
9 {% set target = target or "node2.LF" %}
10 {% set pod_info = pod_info or "etc/yardstick/nodes/compass_sclab_physical/pod.yaml" %}
11 scenarios:
12 -
13   type: Ping
14   options:
15     packetsize: 100
16   host: {{host}}
17   target: {{target}}
18
19   runner:
20     type: Duration
21     duration: 60
22     interval: 1
23
24   sla:
25     max_rtt: 10
26     action: monitor
27
28
29 context:
30   type: Node
31   name: LF
32   file: {{pod_info}}
33