From 3e5e393882d6c7b2cf1252d6b2ae4944efb7fe85 Mon Sep 17 00:00:00 2001 From: fujinhua Date: Thu, 23 May 2019 10:22:35 +0800 Subject: [PATCH] update portid in when create vm Change-Id: I330ccfae97f0f1494d432b87a15dcd1567034327 Issue-ID: VFC-1306 Signed-off-by: fujinhua --- lcm/lcm/nf/biz/common.py | 6 ++++++ lcm/lcm/pub/vimapi/adaptor.py | 1 + 2 files changed, 7 insertions(+) diff --git a/lcm/lcm/nf/biz/common.py b/lcm/lcm/nf/biz/common.py index 212c74c8..bd8411d4 100644 --- a/lcm/lcm/nf/biz/common.py +++ b/lcm/lcm/nf/biz/common.py @@ -145,3 +145,9 @@ def vm_save(job_id, nf_inst_id, ret): is_predefined=ignore_case_get(ret, "returnCode"), instid=nf_inst_id, vmid=vm_id) + for portid in ignore_case_get(ret, "ports"): + PortInstModel.objects.filter( + resourceid=portid + ).update( + vmid=ignore_case_get(ret, "id") + ) diff --git a/lcm/lcm/pub/vimapi/adaptor.py b/lcm/lcm/pub/vimapi/adaptor.py index 27b64336..83727f2d 100644 --- a/lcm/lcm/pub/vimapi/adaptor.py +++ b/lcm/lcm/pub/vimapi/adaptor.py @@ -391,6 +391,7 @@ def create_vm(vim_cache, res_cache, data, vm, do_notify, res_type): set_opt_val(param, "serverGroup", "") # TODO the ServerGroup for anti-affinity and affinity ret = api.create_vm(vim_id, tenant_id, param) + ret["ports"] = [nic.get("portId") for nic in param["nicArray"]] do_notify(res_type, ret) vm_id = ret["id"] if ignore_case_get(ret, "name"): -- 2.16.6