diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-02-15 15:03:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-15 15:03:27 +0000 |
commit | 185a0f1c44e3fe639dd47c7f8cbfb56b29fc0349 (patch) | |
tree | 3ec58c2a3f4d35f9bb56681c8957edeeab767d41 /samples/vnf_samples/nsut/vfw | |
parent | 89566a29278fbef60ca14cba76b2ca6c1a57c32c (diff) | |
parent | 46bbc706b6577230769fbd4f1b3b9b13353f3b8b (diff) |
Merge "Update heat RFC2544 based TC to support SRIOV VF ports."
Diffstat (limited to 'samples/vnf_samples/nsut/vfw')
-rw-r--r-- | samples/vnf_samples/nsut/vfw/tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/samples/vnf_samples/nsut/vfw/tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml b/samples/vnf_samples/nsut/vfw/tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml index 2799a7ee9..13fe5a5a5 100644 --- a/samples/vnf_samples/nsut/vfw/tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml +++ b/samples/vnf_samples/nsut/vfw/tc_heat_rfc2544_ipv4_1rule_1flow_64B_trex.yaml @@ -13,6 +13,9 @@ # limitations under the License. --- +{% set provider = provider or none %} +{% set physical_networks = physical_networks or ['physnet1', 'physnet2'] %} + schema: yardstick:task:0.1 scenarios: - type: NSPerf @@ -68,10 +71,18 @@ context: xe0: cidr: '10.0.2.0/24' gateway_ip: 'null' + {% if provider %} + provider: {{ provider }} + physical_network: {{ physical_networks[0] }} + {% endif %} port_security_enabled: False enable_dhcp: 'false' xe1: cidr: '10.0.3.0/24' gateway_ip: 'null' + {% if provider %} + provider: {{ provider }} + physical_network: {{ physical_networks[1] }} + {% endif %} port_security_enabled: False enable_dhcp: 'false' |