diff options
author | Luc Provoost <luc.provoost@intel.com> | 2018-02-21 21:03:38 +0100 |
---|---|---|
committer | Luc Provoost <luc.provoost@intel.com> | 2018-02-21 21:14:38 +0100 |
commit | 8060c5ed6076886869f7616e0fbbe67ad2724d08 (patch) | |
tree | da3a043b9eeab08dd98edffa90f8162fc510e864 /VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml | |
parent | 485bc363a8709459b560c3446c707765d58d6aef (diff) |
Fixed the calculation of dropped packets and other changes
* Calculation of aboslute and relative dropped packets was wrong and is
now fixed.
* ./createrapid.py has now an extra option to select custom availability
zones for the different VMs.
* Fixed a typo to create the flavor: hw:cpu_thread_policy
* The generator config files have now the packet id & signature fields.
See PROX for more details on this.
* ./runrapid has now a new option --configonly. Default is False. If set
to True, all configuration files will be copied to the VMS, but the
tests are not started. This allows you to go to the VMs and manually
start PROX.
* In addition to the average latency, maximum latency is now also
displayed.
Change-Id: I3bbd7897deb6e452068c07ef68d3959ffa4a4b50
Signed-off-by: Luc Provoost <luc.provoost@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml')
-rw-r--r-- | VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml b/VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml index 0ad39b8a..0037d27d 100644 --- a/VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml +++ b/VNFs/DPPD-PROX/helper-scripts/openstackrapid/3VMsriovrapid.yaml @@ -47,11 +47,15 @@ parameters: label: Floating network name or ID description: Public Network to attach instance to. default: admin_floating_net - availability_zone: + vm1_availability_zone: type: string description: The Availability Zone to launch the instance. default: nova - vm1_availability_zone: + vm2_availability_zone: + type: string + description: The Availability Zone to launch the instance. + default: nova + vm3_availability_zone: type: string description: The Availability Zone to launch the instance. default: nova @@ -106,7 +110,7 @@ resources: vm2: type: OS::Nova::Server properties: - availability_zone: { get_param: availability_zone } + availability_zone: { get_param: vm2_availability_zone } user_data: get_file: prox_user_data.sh key_name: { get_param: key } @@ -129,7 +133,7 @@ resources: vm3: type: OS::Nova::Server properties: - availability_zone: { get_param: availability_zone } + availability_zone: { get_param: vm3_availability_zone } user_data: get_file: prox_user_data.sh key_name: { get_param: key } |