Merge "Docs for vPE"
[yardstick.git] / samples / vnf_samples / nsut / vfw / vfw-tg-topology-scale-up.yaml
1 # Copyright (c) 2016-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 = get(extra_args, 'vports', '2') %}
16 nsd:nsd-catalog:
17     nsd:
18     -   id: 3tg-topology
19         name: 3tg-topology
20         short-name: 3tg-topology
21         description: 3tg-topology
22         constituent-vnfd:
23         -   member-vnf-index: '1'
24             vnfd-id-ref: tg__0
25             VNF model: ../../vnf_descriptors/tg_rfc2544_tpl.yaml      #VNF type
26         -   member-vnf-index: '2'
27             vnfd-id-ref: vnf__0
28             VNF model: ../../vnf_descriptors/vfw_vnf.yaml      #VNF type
29
30         vld:
31 {% for vport in range(0,vports,2|int) %}
32         -   id: uplink_{{loop.index0}}
33             name: tg__0 to vnf__0 link {{vport + 1}}
34             type: ELAN
35             vnfd-connection-point-ref:
36             -   member-vnf-index-ref: '1'
37                 vnfd-connection-point-ref: xe{{vport}}
38                 vnfd-id-ref: tg__0
39             -   member-vnf-index-ref: '2'
40                 vnfd-connection-point-ref: xe{{vport}}
41                 vnfd-id-ref: vnf__0
42         -   id: downlink_{{loop.index0}}
43             name: vnf__0 to tg__0 link {{vport + 2}}
44             type: ELAN
45             vnfd-connection-point-ref:
46             -   member-vnf-index-ref: '2'
47                 vnfd-connection-point-ref: xe{{vport+1}}
48                 vnfd-id-ref: vnf__0
49             -   member-vnf-index-ref: '1'
50                 vnfd-connection-point-ref: xe{{vport+1}}
51                 vnfd-id-ref: tg__0
52 {% endfor %}