From 44de3c894775b3eb53d5169683131177ba6103ba Mon Sep 17 00:00:00 2001
From: Ross Brattain <ross.b.brattain@intel.com>
Date: Sun, 17 Sep 2017 16:10:43 -0700
Subject: heat: add port name as port

Change-Id: Ibd159359c6f57d573a909d6841c121c15bf692c1
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
---
 tests/unit/benchmark/contexts/test_heat.py | 1 +
 yardstick/benchmark/contexts/heat.py       | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/tests/unit/benchmark/contexts/test_heat.py b/tests/unit/benchmark/contexts/test_heat.py
index 2e546805d..223d64060 100644
--- a/tests/unit/benchmark/contexts/test_heat.py
+++ b/tests/unit/benchmark/contexts/test_heat.py
@@ -201,6 +201,7 @@ class HeatContextTestCase(unittest.TestCase):
             "subnet_cidr": '10.20.0.0/15',
             "network": '10.20.0.0',
             "netmask": '255.254.0.0',
+            "name": "port_a",
             "gateway_ip": '10.20.30.1',
             "mac_address": '00:01',
             "device_id": 'dev21',
diff --git a/yardstick/benchmark/contexts/heat.py b/yardstick/benchmark/contexts/heat.py
index 9a7b3817f..ff3e5f801 100644
--- a/yardstick/benchmark/contexts/heat.py
+++ b/yardstick/benchmark/contexts/heat.py
@@ -361,6 +361,8 @@ class HeatContext(Context):
                                                'subnet', 'gateway_ip')]
 
         return {
+            # add default port name
+            "name": port,
             "private_ip": private_ip,
             "subnet_id": outputs[h_join(stack_name, "subnet_id")],
             "subnet_cidr": output_subnet_cidr,
-- 
cgit