Fixes management IP info missing for VDUs

This commit adds code to fix the bug where the management IP info
for multiple VDUs in a VNF are not captured in the outputs section
of the stack heat template. The output section captures just the
info for the last created VDU.

Change-Id: I25aea659ef77af89a2f239647539f066bd55d9dd
Closes-Bug: #1505442
Closes-Bug: #1505892
This commit is contained in:
Vishwanath Jayaraman 2015-10-13 23:19:49 -05:00
parent 0773f4e1a1
commit e8a6296a54
1 changed files with 1 additions and 2 deletions

View File

@ -181,8 +181,7 @@ class DeviceHeat(abstract_driver.DeviceAbstractDriver):
return port
networks_list = []
outputs_dict = {}
template_dict['outputs'] = outputs_dict
outputs_dict = template_dict['outputs']
properties['networks'] = networks_list
for network_param in vdu_dict[
'network_interfaces'].values():