Unify PROX testcases TG and VNF names
[yardstick.git] / samples / vnf_samples / nsut / prox / tc_prox_sriov_l2fwd_multiflow-scale-up.yaml
1 # Copyright (c) 2018-2019 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 {% set vports = vports or 2 %}
16 ---
17 schema: "yardstick:task:0.1"
18
19 scenarios:
20 -
21   type: NSPerf
22   traffic_profile: ../../traffic_profiles/prox_binsearch.yaml
23   extra_args:
24     vports: {{ vports }}
25   topology: prox-tg-topology-scale-up.yaml
26
27   nodes:
28     tg__0: trafficgen_0.yardstick
29     vnf__0: vnf_0.yardstick
30
31   options:
32     interface_speed_gbps: 10
33
34     vnf__0:
35       prox_path: /opt/nsb_bin/prox
36       prox_config: "configs/handle_l2fwd_multiflow-{{ vports }}.cfg"
37       prox_args:
38         "-t": ""
39
40     tg__0:
41       prox_path: /opt/nsb_bin/prox
42       prox_config: "configs/gen_l2fwd_multiflow-{{ vports }}.cfg"
43       prox_args:
44         "-e": ""
45         "-t": ""
46
47   runner:
48     type: Duration
49     # we kill after duration, independent of test duration, so set this high
50     duration: 600
51
52 contexts:
53    - name: yardstick
54      type: Node
55      file: prox_tg_bm.yaml
56    - name: yardstick
57      type: StandaloneSriov
58      file: /etc/yardstick/nodes/standalone/host_sriov.yaml
59      vm_deploy: True
60      flavor:
61        images: "/var/lib/libvirt/images/yardstick-nsb-image.img"
62        ram: 16384
63        extra_specs:
64          hw:cpu_sockets: 1
65          hw:cpu_cores: 10
66          hw:cpu_threads: 2
67        user: ""
68        password: ""
69      servers:
70        vnf__0:
71          network_ports:
72            mgmt:
73              cidr: '1.1.1.62/24'
74 {% for port_num in range((vports/2)|int) %}
75            xe{{ port_num * 2 }}:
76              - uplink_{{ port_num }}
77            xe{{ (port_num * 2) + 1 }}:
78              - downlink_{{ port_num }}
79 {% endfor %}
80      networks:
81 {% for port_num in range((vports/2)|int) %}
82        uplink_{{ port_num }}:
83          phy_port: "{{ networks.uplink[port_num].phy_port }}"
84          vpci: "{{ networks.uplink[port_num].vpci }}"
85          cidr: "{{ networks.uplink[port_num].cidr }}"
86          gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}"
87        downlink_{{ port_num }}:
88          phy_port: "{{ networks.downlink[port_num].phy_port }}"
89          vpci: "{{ networks.downlink[port_num].vpci }}"
90          cidr: "{{ networks.downlink[port_num].cidr }}"
91          gateway_ip: "{{ networks.downlink[port_num].gateway_ip }}"
92 {% endfor %}