From: fujinhua Date: Thu, 23 May 2019 02:22:35 +0000 (+0800) Subject: update portid in when create vm X-Git-Tag: 1.3.1^0 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fgvnfm%2Fvnflcm.git;a=commitdiff_plain;h=3e5e393882d6c7b2cf1252d6b2ae4944efb7fe85 update portid in when create vm Change-Id: I330ccfae97f0f1494d432b87a15dcd1567034327 Issue-ID: VFC-1306 Signed-off-by: fujinhua --- 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"):