49ab05a51d9dd63ada04d752e1875b37bcdbd008
[yardstick.git] / samples / vnf_samples / nsut / prox / tc_prox_ovs-dpdk_l2fwd-scale-up.yaml
1 # Copyright (c) 2018 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: tg__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-{{ vports }}.cfg"
37       prox_args:
38         "-t": ""
39
40     tg__0:
41       prox_path: /opt/nsb_bin/prox
42       prox_config: "configs/gen_l2fwd-{{ 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      servers:
57    - name: yardstick
58      type: StandaloneOvsDpdk
59      file: /etc/yardstick/nodes/standalone/host_ovs.yaml
60      vm_deploy: True
61      ovs_properties:
62        version:
63          ovs: 2.8.0
64          dpdk: 17.05.2
65        pmd_threads: 2
66        ram:
67          socket_0: 2048
68          socket_1: 2048
69        queues: 4
70        vpath: "/usr/local"
71      flavor:
72        images: "/var/lib/libvirt/images/yardstick-nsb-image.img"
73        ram: 16384
74        extra_specs:
75          hw:cpu_sockets: 1
76          hw:cpu_cores: 10
77          hw:cpu_threads: 2
78      servers:
79        vnf__0:
80          network_ports:
81            mgmt:
82              cidr: '1.1.1.62/24'
83 {% for port_num in range((vports/2)|int) %}
84            xe{{ port_num * 2 }}:
85              - uplink_{{ port_num }}
86            xe{{ (port_num * 2) + 1 }}:
87              - downlink_{{ port_num }}
88 {% endfor %}
89      networks:
90 {% for port_num in range((vports/2)|int) %}
91        uplink_{{ port_num }}:
92          port_num: {{networks.uplink[port_num].port_num}}
93          phy_port: "{{networks.uplink[port_num].phy_port}}"
94          vpci: "{{networks.uplink[port_num].vpci}}"
95          cidr: "{{networks.uplink[port_num].cidr}}"
96          gateway_ip: "{{ networks.uplink[port_num].gateway_ip }}"
97        downlink_{{ port_num }}:
98          port_num: {{networks.downlink[port_num].port_num}}
99          phy_port: "{{networks.downlink[port_num].phy_port}}"
100          vpci: "{{networks.downlink[port_num].vpci}}"
101          cidr: "{{networks.downlink[port_num].cidr}}"
102          gateway_ip: "{{networks.downlink[port_num].gateway_ip}}"
103 {% endfor %}