From 7caf7a6be0fae6b341181b3e6286372e2e93b4b8 Mon Sep 17 00:00:00 2001 From: Martin Klozik Date: Fri, 11 Dec 2015 14:29:18 +0000 Subject: testcase: scalability - configurable installation of flows to the vswitch Stream specific flows can be pre-installed into the vswitch based on the value of testcase specific configuration option "Pre-installed Flows". In case, it is set to 'Yes', then specific flow for each stream will be inserted into the switch. Otherwise only generic flows will be installed. Default value of "Pre-installed Flows" is set to 'No'. Its value can be overridden by CLI parameter pre-installed_flows. This configuration parameter is an enhancement of "MultiSream" feature and it is ignored if "MultiStream" is disabled. Python module 'netaddr' is required by this implementation and it has been added to requirements.txt file. Change-Id: I8a17577a702bf2be2753134eb203b936a87fc2e5 JIRA: VSPERF-83 Signed-off-by: Martin Klozik Reviewed-by: Maryam Tahhan Reviewed-by: Brian Castelli --- conf/01_testcases.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'conf/01_testcases.conf') diff --git a/conf/01_testcases.conf b/conf/01_testcases.conf index fd268bed..b855405d 100755 --- a/conf/01_testcases.conf +++ b/conf/01_testcases.conf @@ -43,6 +43,18 @@ # # "L3" - iteration of destination IP address # # "L4" - iteration of destination UDP port # # Default value is "L4". +# "Pre-installed Flows": ["Yes"|"No"] +# # Optional. Pre-installed Flows is an extension +# # of the "MultiStream" feature. If MultiStream +# # is disabled, then Pre-installed Flows will be +# # ignored. It defines if stream specific flows +# # will be inserted into OVS or not. +# # It can be overridden by cli option +# # pre-installed_flows +# # Values: +# # "Yes" - flows will be inserted into OVS +# # "No" - flows won't be inserted into OVS +# # Default value is "No". # "Flow Type": ["port"|"IP"] # Optional. Defines flows complexity. In case # # it isn't specified, then "port" will be used. # # Values: -- cgit 1.2.3-korg