fix(configuration): juju related changes to honor descriptor changes introduced in...
[osm/LCM.git] / osm_lcm / ns.py
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2018 Telefonica S.A.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License"); you may
7 # not use this file except in compliance with the License. You may obtain
8 # a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15 # License for the specific language governing permissions and limitations
16 # under the License.
17 ##
18
19 import asyncio
20 import yaml
21 import logging
22 import logging.handlers
23 import traceback
24 import json
25 from jinja2 import Environment, TemplateError, TemplateNotFound, StrictUndefined, UndefinedError
26
27 from osm_lcm import ROclient
28 from osm_lcm.ng_ro import NgRoClient, NgRoException
29 from osm_lcm.lcm_utils import LcmException, LcmExceptionNoMgmtIP, LcmBase, deep_get, get_iterable, populate_dict
30 from osm_lcm.data_utils.nsd import get_vnf_profiles
31 from osm_lcm.data_utils.vnfd import get_vdu_list, get_vdu_profile, \
32 get_ee_sorted_initial_config_primitive_list, get_ee_sorted_terminate_config_primitive_list, \
33 get_kdu_list, get_virtual_link_profiles, get_vdu, get_configuration, \
34 get_vdu_index, get_scaling_aspect, get_number_of_instances, get_juju_ee_ref
35 from osm_lcm.data_utils.list_utils import find_in_list
36 from osm_lcm.data_utils.vnfr import get_osm_params
37 from osm_lcm.data_utils.dict_utils import parse_yaml_strings
38 from osm_lcm.data_utils.database.vim_account import VimAccountDB
39 from n2vc.k8s_helm_conn import K8sHelmConnector
40 from n2vc.k8s_helm3_conn import K8sHelm3Connector
41 from n2vc.k8s_juju_conn import K8sJujuConnector
42
43 from osm_common.dbbase import DbException
44 from osm_common.fsbase import FsException
45
46 from osm_lcm.data_utils.database.database import Database
47 from osm_lcm.data_utils.filesystem.filesystem import Filesystem
48
49 from n2vc.n2vc_juju_conn import N2VCJujuConnector
50 from n2vc.exceptions import N2VCException, N2VCNotFound, K8sException
51
52 from osm_lcm.lcm_helm_conn import LCMHelmConn
53
54 from copy import copy, deepcopy
55 from time import time
56 from uuid import uuid4
57
58 from random import randint
59
60 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
61
62
63 class NsLcm(LcmBase):
64 timeout_vca_on_error = 5 * 60 # Time for charm from first time at blocked,error status to mark as failed
65 timeout_ns_deploy = 2 * 3600 # default global timeout for deployment a ns
66 timeout_ns_terminate = 1800 # default global timeout for un deployment a ns
67 timeout_charm_delete = 10 * 60
68 timeout_primitive = 30 * 60 # timeout for primitive execution
69 timeout_progress_primitive = 10 * 60 # timeout for some progress in a primitive execution
70
71 SUBOPERATION_STATUS_NOT_FOUND = -1
72 SUBOPERATION_STATUS_NEW = -2
73 SUBOPERATION_STATUS_SKIP = -3
74 task_name_deploy_vca = "Deploying VCA"
75
76 def __init__(self, msg, lcm_tasks, config, loop, prometheus=None):
77 """
78 Init, Connect to database, filesystem storage, and messaging
79 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
80 :return: None
81 """
82 super().__init__(
83 msg=msg,
84 logger=logging.getLogger('lcm.ns')
85 )
86
87 self.db = Database().instance.db
88 self.fs = Filesystem().instance.fs
89 self.loop = loop
90 self.lcm_tasks = lcm_tasks
91 self.timeout = config["timeout"]
92 self.ro_config = config["ro_config"]
93 self.ng_ro = config["ro_config"].get("ng")
94 self.vca_config = config["VCA"].copy()
95
96 # create N2VC connector
97 self.n2vc = N2VCJujuConnector(
98 log=self.logger,
99 loop=self.loop,
100 url='{}:{}'.format(self.vca_config['host'], self.vca_config['port']),
101 username=self.vca_config.get('user', None),
102 vca_config=self.vca_config,
103 on_update_db=self._on_update_n2vc_db,
104 fs=self.fs,
105 db=self.db
106 )
107
108 self.conn_helm_ee = LCMHelmConn(
109 log=self.logger,
110 loop=self.loop,
111 url=None,
112 username=None,
113 vca_config=self.vca_config,
114 on_update_db=self._on_update_n2vc_db
115 )
116
117 self.k8sclusterhelm2 = K8sHelmConnector(
118 kubectl_command=self.vca_config.get("kubectlpath"),
119 helm_command=self.vca_config.get("helmpath"),
120 log=self.logger,
121 on_update_db=None,
122 fs=self.fs,
123 db=self.db
124 )
125
126 self.k8sclusterhelm3 = K8sHelm3Connector(
127 kubectl_command=self.vca_config.get("kubectlpath"),
128 helm_command=self.vca_config.get("helm3path"),
129 fs=self.fs,
130 log=self.logger,
131 db=self.db,
132 on_update_db=None,
133 )
134
135 self.k8sclusterjuju = K8sJujuConnector(
136 kubectl_command=self.vca_config.get("kubectlpath"),
137 juju_command=self.vca_config.get("jujupath"),
138 log=self.logger,
139 loop=self.loop,
140 on_update_db=None,
141 vca_config=self.vca_config,
142 fs=self.fs,
143 db=self.db
144 )
145
146 self.k8scluster_map = {
147 "helm-chart": self.k8sclusterhelm2,
148 "helm-chart-v3": self.k8sclusterhelm3,
149 "chart": self.k8sclusterhelm3,
150 "juju-bundle": self.k8sclusterjuju,
151 "juju": self.k8sclusterjuju,
152 }
153
154 self.vca_map = {
155 "lxc_proxy_charm": self.n2vc,
156 "native_charm": self.n2vc,
157 "k8s_proxy_charm": self.n2vc,
158 "helm": self.conn_helm_ee,
159 "helm-v3": self.conn_helm_ee
160 }
161
162 self.prometheus = prometheus
163
164 # create RO client
165 self.RO = NgRoClient(self.loop, **self.ro_config)
166
167 @staticmethod
168 def increment_ip_mac(ip_mac, vm_index=1):
169 if not isinstance(ip_mac, str):
170 return ip_mac
171 try:
172 # try with ipv4 look for last dot
173 i = ip_mac.rfind(".")
174 if i > 0:
175 i += 1
176 return "{}{}".format(ip_mac[:i], int(ip_mac[i:]) + vm_index)
177 # try with ipv6 or mac look for last colon. Operate in hex
178 i = ip_mac.rfind(":")
179 if i > 0:
180 i += 1
181 # format in hex, len can be 2 for mac or 4 for ipv6
182 return ("{}{:0" + str(len(ip_mac) - i) + "x}").format(ip_mac[:i], int(ip_mac[i:], 16) + vm_index)
183 except Exception:
184 pass
185 return None
186
187 def _on_update_ro_db(self, nsrs_id, ro_descriptor):
188
189 # self.logger.debug('_on_update_ro_db(nsrs_id={}'.format(nsrs_id))
190
191 try:
192 # TODO filter RO descriptor fields...
193
194 # write to database
195 db_dict = dict()
196 # db_dict['deploymentStatus'] = yaml.dump(ro_descriptor, default_flow_style=False, indent=2)
197 db_dict['deploymentStatus'] = ro_descriptor
198 self.update_db_2("nsrs", nsrs_id, db_dict)
199
200 except Exception as e:
201 self.logger.warn('Cannot write database RO deployment for ns={} -> {}'.format(nsrs_id, e))
202
203 async def _on_update_n2vc_db(self, table, filter, path, updated_data):
204
205 # remove last dot from path (if exists)
206 if path.endswith('.'):
207 path = path[:-1]
208
209 # self.logger.debug('_on_update_n2vc_db(table={}, filter={}, path={}, updated_data={}'
210 # .format(table, filter, path, updated_data))
211
212 try:
213
214 nsr_id = filter.get('_id')
215
216 # read ns record from database
217 nsr = self.db.get_one(table='nsrs', q_filter=filter)
218 current_ns_status = nsr.get('nsState')
219
220 # get vca status for NS
221 status_dict = await self.n2vc.get_status(namespace='.' + nsr_id, yaml_format=False)
222
223 # vcaStatus
224 db_dict = dict()
225 db_dict['vcaStatus'] = status_dict
226
227 # update configurationStatus for this VCA
228 try:
229 vca_index = int(path[path.rfind(".")+1:])
230
231 vca_list = deep_get(target_dict=nsr, key_list=('_admin', 'deployed', 'VCA'))
232 vca_status = vca_list[vca_index].get('status')
233
234 configuration_status_list = nsr.get('configurationStatus')
235 config_status = configuration_status_list[vca_index].get('status')
236
237 if config_status == 'BROKEN' and vca_status != 'failed':
238 db_dict['configurationStatus'][vca_index] = 'READY'
239 elif config_status != 'BROKEN' and vca_status == 'failed':
240 db_dict['configurationStatus'][vca_index] = 'BROKEN'
241 except Exception as e:
242 # not update configurationStatus
243 self.logger.debug('Error updating vca_index (ignore): {}'.format(e))
244
245 # if nsState = 'READY' check if juju is reporting some error => nsState = 'DEGRADED'
246 # if nsState = 'DEGRADED' check if all is OK
247 is_degraded = False
248 if current_ns_status in ('READY', 'DEGRADED'):
249 error_description = ''
250 # check machines
251 if status_dict.get('machines'):
252 for machine_id in status_dict.get('machines'):
253 machine = status_dict.get('machines').get(machine_id)
254 # check machine agent-status
255 if machine.get('agent-status'):
256 s = machine.get('agent-status').get('status')
257 if s != 'started':
258 is_degraded = True
259 error_description += 'machine {} agent-status={} ; '.format(machine_id, s)
260 # check machine instance status
261 if machine.get('instance-status'):
262 s = machine.get('instance-status').get('status')
263 if s != 'running':
264 is_degraded = True
265 error_description += 'machine {} instance-status={} ; '.format(machine_id, s)
266 # check applications
267 if status_dict.get('applications'):
268 for app_id in status_dict.get('applications'):
269 app = status_dict.get('applications').get(app_id)
270 # check application status
271 if app.get('status'):
272 s = app.get('status').get('status')
273 if s != 'active':
274 is_degraded = True
275 error_description += 'application {} status={} ; '.format(app_id, s)
276
277 if error_description:
278 db_dict['errorDescription'] = error_description
279 if current_ns_status == 'READY' and is_degraded:
280 db_dict['nsState'] = 'DEGRADED'
281 if current_ns_status == 'DEGRADED' and not is_degraded:
282 db_dict['nsState'] = 'READY'
283
284 # write to database
285 self.update_db_2("nsrs", nsr_id, db_dict)
286
287 except (asyncio.CancelledError, asyncio.TimeoutError):
288 raise
289 except Exception as e:
290 self.logger.warn('Error updating NS state for ns={}: {}'.format(nsr_id, e))
291
292 @staticmethod
293 def _parse_cloud_init(cloud_init_text, additional_params, vnfd_id, vdu_id):
294 try:
295 env = Environment(undefined=StrictUndefined)
296 template = env.from_string(cloud_init_text)
297 return template.render(additional_params or {})
298 except UndefinedError as e:
299 raise LcmException("Variable {} at vnfd[id={}]:vdu[id={}]:cloud-init/cloud-init-"
300 "file, must be provided in the instantiation parameters inside the "
301 "'additionalParamsForVnf/Vdu' block".format(e, vnfd_id, vdu_id))
302 except (TemplateError, TemplateNotFound) as e:
303 raise LcmException("Error parsing Jinja2 to cloud-init content at vnfd[id={}]:vdu[id={}]: {}".
304 format(vnfd_id, vdu_id, e))
305
306 def _get_vdu_cloud_init_content(self, vdu, vnfd):
307 cloud_init_content = cloud_init_file = None
308 try:
309 if vdu.get("cloud-init-file"):
310 base_folder = vnfd["_admin"]["storage"]
311 cloud_init_file = "{}/{}/cloud_init/{}".format(base_folder["folder"], base_folder["pkg-dir"],
312 vdu["cloud-init-file"])
313 with self.fs.file_open(cloud_init_file, "r") as ci_file:
314 cloud_init_content = ci_file.read()
315 elif vdu.get("cloud-init"):
316 cloud_init_content = vdu["cloud-init"]
317
318 return cloud_init_content
319 except FsException as e:
320 raise LcmException("Error reading vnfd[id={}]:vdu[id={}]:cloud-init-file={}: {}".
321 format(vnfd["id"], vdu["id"], cloud_init_file, e))
322
323 def _get_vdu_additional_params(self, db_vnfr, vdu_id):
324 vdur = next(vdur for vdur in db_vnfr.get("vdur") if vdu_id == vdur["vdu-id-ref"])
325 additional_params = vdur.get("additionalParams")
326 return parse_yaml_strings(additional_params)
327
328 def vnfd2RO(self, vnfd, new_id=None, additionalParams=None, nsrId=None):
329 """
330 Converts creates a new vnfd descriptor for RO base on input OSM IM vnfd
331 :param vnfd: input vnfd
332 :param new_id: overrides vnf id if provided
333 :param additionalParams: Instantiation params for VNFs provided
334 :param nsrId: Id of the NSR
335 :return: copy of vnfd
336 """
337 vnfd_RO = deepcopy(vnfd)
338 # remove unused by RO configuration, monitoring, scaling and internal keys
339 vnfd_RO.pop("_id", None)
340 vnfd_RO.pop("_admin", None)
341 vnfd_RO.pop("monitoring-param", None)
342 vnfd_RO.pop("scaling-group-descriptor", None)
343 vnfd_RO.pop("kdu", None)
344 vnfd_RO.pop("k8s-cluster", None)
345 if new_id:
346 vnfd_RO["id"] = new_id
347
348 # parse cloud-init or cloud-init-file with the provided variables using Jinja2
349 for vdu in get_iterable(vnfd_RO, "vdu"):
350 vdu.pop("cloud-init-file", None)
351 vdu.pop("cloud-init", None)
352 return vnfd_RO
353
354 @staticmethod
355 def ip_profile_2_RO(ip_profile):
356 RO_ip_profile = deepcopy(ip_profile)
357 if "dns-server" in RO_ip_profile:
358 if isinstance(RO_ip_profile["dns-server"], list):
359 RO_ip_profile["dns-address"] = []
360 for ds in RO_ip_profile.pop("dns-server"):
361 RO_ip_profile["dns-address"].append(ds['address'])
362 else:
363 RO_ip_profile["dns-address"] = RO_ip_profile.pop("dns-server")
364 if RO_ip_profile.get("ip-version") == "ipv4":
365 RO_ip_profile["ip-version"] = "IPv4"
366 if RO_ip_profile.get("ip-version") == "ipv6":
367 RO_ip_profile["ip-version"] = "IPv6"
368 if "dhcp-params" in RO_ip_profile:
369 RO_ip_profile["dhcp"] = RO_ip_profile.pop("dhcp-params")
370 return RO_ip_profile
371
372 def _get_ro_vim_id_for_vim_account(self, vim_account):
373 db_vim = self.db.get_one("vim_accounts", {"_id": vim_account})
374 if db_vim["_admin"]["operationalState"] != "ENABLED":
375 raise LcmException("VIM={} is not available. operationalState={}".format(
376 vim_account, db_vim["_admin"]["operationalState"]))
377 RO_vim_id = db_vim["_admin"]["deployed"]["RO"]
378 return RO_vim_id
379
380 def get_ro_wim_id_for_wim_account(self, wim_account):
381 if isinstance(wim_account, str):
382 db_wim = self.db.get_one("wim_accounts", {"_id": wim_account})
383 if db_wim["_admin"]["operationalState"] != "ENABLED":
384 raise LcmException("WIM={} is not available. operationalState={}".format(
385 wim_account, db_wim["_admin"]["operationalState"]))
386 RO_wim_id = db_wim["_admin"]["deployed"]["RO-account"]
387 return RO_wim_id
388 else:
389 return wim_account
390
391 def scale_vnfr(self, db_vnfr, vdu_create=None, vdu_delete=None, mark_delete=False):
392
393 db_vdu_push_list = []
394 db_update = {"_admin.modified": time()}
395 if vdu_create:
396 for vdu_id, vdu_count in vdu_create.items():
397 vdur = next((vdur for vdur in reversed(db_vnfr["vdur"]) if vdur["vdu-id-ref"] == vdu_id), None)
398 if not vdur:
399 raise LcmException("Error scaling OUT VNFR for {}. There is not any existing vnfr. Scaled to 0?".
400 format(vdu_id))
401
402 for count in range(vdu_count):
403 vdur_copy = deepcopy(vdur)
404 vdur_copy["status"] = "BUILD"
405 vdur_copy["status-detailed"] = None
406 vdur_copy["ip-address"]: None
407 vdur_copy["_id"] = str(uuid4())
408 vdur_copy["count-index"] += count + 1
409 vdur_copy["id"] = "{}-{}".format(vdur_copy["vdu-id-ref"], vdur_copy["count-index"])
410 vdur_copy.pop("vim_info", None)
411 for iface in vdur_copy["interfaces"]:
412 if iface.get("fixed-ip"):
413 iface["ip-address"] = self.increment_ip_mac(iface["ip-address"], count+1)
414 else:
415 iface.pop("ip-address", None)
416 if iface.get("fixed-mac"):
417 iface["mac-address"] = self.increment_ip_mac(iface["mac-address"], count+1)
418 else:
419 iface.pop("mac-address", None)
420 iface.pop("mgmt_vnf", None) # only first vdu can be managment of vnf
421 db_vdu_push_list.append(vdur_copy)
422 # self.logger.debug("scale out, adding vdu={}".format(vdur_copy))
423 if vdu_delete:
424 for vdu_id, vdu_count in vdu_delete.items():
425 if mark_delete:
426 indexes_to_delete = [iv[0] for iv in enumerate(db_vnfr["vdur"]) if iv[1]["vdu-id-ref"] == vdu_id]
427 db_update.update({"vdur.{}.status".format(i): "DELETING" for i in indexes_to_delete[-vdu_count:]})
428 else:
429 # it must be deleted one by one because common.db does not allow otherwise
430 vdus_to_delete = [v for v in reversed(db_vnfr["vdur"]) if v["vdu-id-ref"] == vdu_id]
431 for vdu in vdus_to_delete[:vdu_count]:
432 self.db.set_one("vnfrs", {"_id": db_vnfr["_id"]}, None, pull={"vdur": {"_id": vdu["_id"]}})
433 db_push = {"vdur": db_vdu_push_list} if db_vdu_push_list else None
434 self.db.set_one("vnfrs", {"_id": db_vnfr["_id"]}, db_update, push_list=db_push)
435 # modify passed dictionary db_vnfr
436 db_vnfr_ = self.db.get_one("vnfrs", {"_id": db_vnfr["_id"]})
437 db_vnfr["vdur"] = db_vnfr_["vdur"]
438
439 def ns_update_nsr(self, ns_update_nsr, db_nsr, nsr_desc_RO):
440 """
441 Updates database nsr with the RO info for the created vld
442 :param ns_update_nsr: dictionary to be filled with the updated info
443 :param db_nsr: content of db_nsr. This is also modified
444 :param nsr_desc_RO: nsr descriptor from RO
445 :return: Nothing, LcmException is raised on errors
446 """
447
448 for vld_index, vld in enumerate(get_iterable(db_nsr, "vld")):
449 for net_RO in get_iterable(nsr_desc_RO, "nets"):
450 if vld["id"] != net_RO.get("ns_net_osm_id"):
451 continue
452 vld["vim-id"] = net_RO.get("vim_net_id")
453 vld["name"] = net_RO.get("vim_name")
454 vld["status"] = net_RO.get("status")
455 vld["status-detailed"] = net_RO.get("error_msg")
456 ns_update_nsr["vld.{}".format(vld_index)] = vld
457 break
458 else:
459 raise LcmException("ns_update_nsr: Not found vld={} at RO info".format(vld["id"]))
460
461 def set_vnfr_at_error(self, db_vnfrs, error_text):
462 try:
463 for db_vnfr in db_vnfrs.values():
464 vnfr_update = {"status": "ERROR"}
465 for vdu_index, vdur in enumerate(get_iterable(db_vnfr, "vdur")):
466 if "status" not in vdur:
467 vdur["status"] = "ERROR"
468 vnfr_update["vdur.{}.status".format(vdu_index)] = "ERROR"
469 if error_text:
470 vdur["status-detailed"] = str(error_text)
471 vnfr_update["vdur.{}.status-detailed".format(vdu_index)] = "ERROR"
472 self.update_db_2("vnfrs", db_vnfr["_id"], vnfr_update)
473 except DbException as e:
474 self.logger.error("Cannot update vnf. {}".format(e))
475
476 def ns_update_vnfr(self, db_vnfrs, nsr_desc_RO):
477 """
478 Updates database vnfr with the RO info, e.g. ip_address, vim_id... Descriptor db_vnfrs is also updated
479 :param db_vnfrs: dictionary with member-vnf-index: vnfr-content
480 :param nsr_desc_RO: nsr descriptor from RO
481 :return: Nothing, LcmException is raised on errors
482 """
483 for vnf_index, db_vnfr in db_vnfrs.items():
484 for vnf_RO in nsr_desc_RO["vnfs"]:
485 if vnf_RO["member_vnf_index"] != vnf_index:
486 continue
487 vnfr_update = {}
488 if vnf_RO.get("ip_address"):
489 db_vnfr["ip-address"] = vnfr_update["ip-address"] = vnf_RO["ip_address"].split(";")[0]
490 elif not db_vnfr.get("ip-address"):
491 if db_vnfr.get("vdur"): # if not VDUs, there is not ip_address
492 raise LcmExceptionNoMgmtIP("ns member_vnf_index '{}' has no IP address".format(vnf_index))
493
494 for vdu_index, vdur in enumerate(get_iterable(db_vnfr, "vdur")):
495 vdur_RO_count_index = 0
496 if vdur.get("pdu-type"):
497 continue
498 for vdur_RO in get_iterable(vnf_RO, "vms"):
499 if vdur["vdu-id-ref"] != vdur_RO["vdu_osm_id"]:
500 continue
501 if vdur["count-index"] != vdur_RO_count_index:
502 vdur_RO_count_index += 1
503 continue
504 vdur["vim-id"] = vdur_RO.get("vim_vm_id")
505 if vdur_RO.get("ip_address"):
506 vdur["ip-address"] = vdur_RO["ip_address"].split(";")[0]
507 else:
508 vdur["ip-address"] = None
509 vdur["vdu-id-ref"] = vdur_RO.get("vdu_osm_id")
510 vdur["name"] = vdur_RO.get("vim_name")
511 vdur["status"] = vdur_RO.get("status")
512 vdur["status-detailed"] = vdur_RO.get("error_msg")
513 for ifacer in get_iterable(vdur, "interfaces"):
514 for interface_RO in get_iterable(vdur_RO, "interfaces"):
515 if ifacer["name"] == interface_RO.get("internal_name"):
516 ifacer["ip-address"] = interface_RO.get("ip_address")
517 ifacer["mac-address"] = interface_RO.get("mac_address")
518 break
519 else:
520 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vdur={} interface={} "
521 "from VIM info"
522 .format(vnf_index, vdur["vdu-id-ref"], ifacer["name"]))
523 vnfr_update["vdur.{}".format(vdu_index)] = vdur
524 break
525 else:
526 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vdur={} count_index={} from "
527 "VIM info".format(vnf_index, vdur["vdu-id-ref"], vdur["count-index"]))
528
529 for vld_index, vld in enumerate(get_iterable(db_vnfr, "vld")):
530 for net_RO in get_iterable(nsr_desc_RO, "nets"):
531 if vld["id"] != net_RO.get("vnf_net_osm_id"):
532 continue
533 vld["vim-id"] = net_RO.get("vim_net_id")
534 vld["name"] = net_RO.get("vim_name")
535 vld["status"] = net_RO.get("status")
536 vld["status-detailed"] = net_RO.get("error_msg")
537 vnfr_update["vld.{}".format(vld_index)] = vld
538 break
539 else:
540 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vld={} from VIM info".format(
541 vnf_index, vld["id"]))
542
543 self.update_db_2("vnfrs", db_vnfr["_id"], vnfr_update)
544 break
545
546 else:
547 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} from VIM info".format(vnf_index))
548
549 def _get_ns_config_info(self, nsr_id):
550 """
551 Generates a mapping between vnf,vdu elements and the N2VC id
552 :param nsr_id: id of nsr to get last database _admin.deployed.VCA that contains this list
553 :return: a dictionary with {osm-config-mapping: {}} where its element contains:
554 "<member-vnf-index>": <N2VC-id> for a vnf configuration, or
555 "<member-vnf-index>.<vdu.id>.<vdu replica(0, 1,..)>": <N2VC-id> for a vdu configuration
556 """
557 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
558 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
559 mapping = {}
560 ns_config_info = {"osm-config-mapping": mapping}
561 for vca in vca_deployed_list:
562 if not vca["member-vnf-index"]:
563 continue
564 if not vca["vdu_id"]:
565 mapping[vca["member-vnf-index"]] = vca["application"]
566 else:
567 mapping["{}.{}.{}".format(vca["member-vnf-index"], vca["vdu_id"], vca["vdu_count_index"])] =\
568 vca["application"]
569 return ns_config_info
570
571 async def _instantiate_ng_ro(self, logging_text, nsr_id, nsd, db_nsr, db_nslcmop, db_vnfrs, db_vnfds,
572 n2vc_key_list, stage, start_deploy, timeout_ns_deploy):
573
574 db_vims = {}
575
576 def get_vim_account(vim_account_id):
577 nonlocal db_vims
578 if vim_account_id in db_vims:
579 return db_vims[vim_account_id]
580 db_vim = self.db.get_one("vim_accounts", {"_id": vim_account_id})
581 db_vims[vim_account_id] = db_vim
582 return db_vim
583
584 # modify target_vld info with instantiation parameters
585 def parse_vld_instantiation_params(target_vim, target_vld, vld_params, target_sdn):
586 if vld_params.get("ip-profile"):
587 target_vld["vim_info"][target_vim]["ip_profile"] = vld_params["ip-profile"]
588 if vld_params.get("provider-network"):
589 target_vld["vim_info"][target_vim]["provider_network"] = vld_params["provider-network"]
590 if "sdn-ports" in vld_params["provider-network"] and target_sdn:
591 target_vld["vim_info"][target_sdn]["sdn-ports"] = vld_params["provider-network"]["sdn-ports"]
592 if vld_params.get("wimAccountId"):
593 target_wim = "wim:{}".format(vld_params["wimAccountId"])
594 target_vld["vim_info"][target_wim] = {}
595 for param in ("vim-network-name", "vim-network-id"):
596 if vld_params.get(param):
597 if isinstance(vld_params[param], dict):
598 for vim, vim_net in vld_params[param]:
599 other_target_vim = "vim:" + vim
600 populate_dict(target_vld["vim_info"], (other_target_vim, param.replace("-", "_")), vim_net)
601 else: # isinstance str
602 target_vld["vim_info"][target_vim][param.replace("-", "_")] = vld_params[param]
603 if vld_params.get("common_id"):
604 target_vld["common_id"] = vld_params.get("common_id")
605
606 nslcmop_id = db_nslcmop["_id"]
607 target = {
608 "name": db_nsr["name"],
609 "ns": {"vld": []},
610 "vnf": [],
611 "image": deepcopy(db_nsr["image"]),
612 "flavor": deepcopy(db_nsr["flavor"]),
613 "action_id": nslcmop_id,
614 "cloud_init_content": {},
615 }
616 for image in target["image"]:
617 image["vim_info"] = {}
618 for flavor in target["flavor"]:
619 flavor["vim_info"] = {}
620
621 if db_nslcmop.get("lcmOperationType") != "instantiate":
622 # get parameters of instantiation:
623 db_nslcmop_instantiate = self.db.get_list("nslcmops", {"nsInstanceId": db_nslcmop["nsInstanceId"],
624 "lcmOperationType": "instantiate"})[-1]
625 ns_params = db_nslcmop_instantiate.get("operationParams")
626 else:
627 ns_params = db_nslcmop.get("operationParams")
628 ssh_keys_instantiation = ns_params.get("ssh_keys") or []
629 ssh_keys_all = ssh_keys_instantiation + (n2vc_key_list or [])
630
631 cp2target = {}
632 for vld_index, vld in enumerate(db_nsr.get("vld")):
633 target_vim = "vim:{}".format(ns_params["vimAccountId"])
634 target_vld = {
635 "id": vld["id"],
636 "name": vld["name"],
637 "mgmt-network": vld.get("mgmt-network", False),
638 "type": vld.get("type"),
639 "vim_info": {
640 target_vim: {
641 "vim_network_name": vld.get("vim-network-name"),
642 "vim_account_id": ns_params["vimAccountId"]
643 }
644 }
645 }
646 # check if this network needs SDN assist
647 if vld.get("pci-interfaces"):
648 db_vim = get_vim_account(ns_params["vimAccountId"])
649 sdnc_id = db_vim["config"].get("sdn-controller")
650 if sdnc_id:
651 sdn_vld = "nsrs:{}:vld.{}".format(nsr_id, vld["id"])
652 target_sdn = "sdn:{}".format(sdnc_id)
653 target_vld["vim_info"][target_sdn] = {
654 "sdn": True, "target_vim": target_vim, "vlds": [sdn_vld], "type": vld.get("type")}
655
656 nsd_vnf_profiles = get_vnf_profiles(nsd)
657 for nsd_vnf_profile in nsd_vnf_profiles:
658 for cp in nsd_vnf_profile["virtual-link-connectivity"]:
659 if cp["virtual-link-profile-id"] == vld["id"]:
660 cp2target["member_vnf:{}.{}".format(
661 cp["constituent-cpd-id"][0]["constituent-base-element-id"],
662 cp["constituent-cpd-id"][0]["constituent-cpd-id"]
663 )] = "nsrs:{}:vld.{}".format(nsr_id, vld_index)
664
665 # check at nsd descriptor, if there is an ip-profile
666 vld_params = {}
667 virtual_link_profiles = get_virtual_link_profiles(nsd)
668
669 for vlp in virtual_link_profiles:
670 ip_profile = find_in_list(nsd["ip-profiles"],
671 lambda profile: profile["name"] == vlp["ip-profile-ref"])
672 vld_params["ip-profile"] = ip_profile["ip-profile-params"]
673 # update vld_params with instantiation params
674 vld_instantiation_params = find_in_list(get_iterable(ns_params, "vld"),
675 lambda a_vld: a_vld["name"] in (vld["name"], vld["id"]))
676 if vld_instantiation_params:
677 vld_params.update(vld_instantiation_params)
678 parse_vld_instantiation_params(target_vim, target_vld, vld_params, None)
679 target["ns"]["vld"].append(target_vld)
680
681 for vnfr in db_vnfrs.values():
682 vnfd = find_in_list(db_vnfds, lambda db_vnf: db_vnf["id"] == vnfr["vnfd-ref"])
683 vnf_params = find_in_list(get_iterable(ns_params, "vnf"),
684 lambda a_vnf: a_vnf["member-vnf-index"] == vnfr["member-vnf-index-ref"])
685 target_vnf = deepcopy(vnfr)
686 target_vim = "vim:{}".format(vnfr["vim-account-id"])
687 for vld in target_vnf.get("vld", ()):
688 # check if connected to a ns.vld, to fill target'
689 vnf_cp = find_in_list(vnfd.get("int-virtual-link-desc", ()),
690 lambda cpd: cpd.get("id") == vld["id"])
691 if vnf_cp:
692 ns_cp = "member_vnf:{}.{}".format(vnfr["member-vnf-index-ref"], vnf_cp["id"])
693 if cp2target.get(ns_cp):
694 vld["target"] = cp2target[ns_cp]
695
696 vld["vim_info"] = {target_vim: {"vim_network_name": vld.get("vim-network-name")}}
697 # check if this network needs SDN assist
698 target_sdn = None
699 if vld.get("pci-interfaces"):
700 db_vim = get_vim_account(vnfr["vim-account-id"])
701 sdnc_id = db_vim["config"].get("sdn-controller")
702 if sdnc_id:
703 sdn_vld = "vnfrs:{}:vld.{}".format(target_vnf["_id"], vld["id"])
704 target_sdn = "sdn:{}".format(sdnc_id)
705 vld["vim_info"][target_sdn] = {
706 "sdn": True, "target_vim": target_vim, "vlds": [sdn_vld], "type": vld.get("type")}
707
708 # check at vnfd descriptor, if there is an ip-profile
709 vld_params = {}
710 vnfd_vlp = find_in_list(
711 get_virtual_link_profiles(vnfd),
712 lambda a_link_profile: a_link_profile["id"] == vld["id"]
713 )
714 if vnfd_vlp and vnfd_vlp.get("virtual-link-protocol-data") and \
715 vnfd_vlp["virtual-link-protocol-data"].get("l3-protocol-data"):
716 ip_profile_source_data = vnfd_vlp["virtual-link-protocol-data"]["l3-protocol-data"]
717 ip_profile_dest_data = {}
718 if "ip-version" in ip_profile_source_data:
719 ip_profile_dest_data["ip-version"] = ip_profile_source_data["ip-version"]
720 if "cidr" in ip_profile_source_data:
721 ip_profile_dest_data["subnet-address"] = ip_profile_source_data["cidr"]
722 if "gateway-ip" in ip_profile_source_data:
723 ip_profile_dest_data["gateway-address"] = ip_profile_source_data["gateway-ip"]
724 if "dhcp-enabled" in ip_profile_source_data:
725 ip_profile_dest_data["dhcp-params"] = {
726 "enabled": ip_profile_source_data["dhcp-enabled"]
727 }
728
729 vld_params["ip-profile"] = ip_profile_dest_data
730 # update vld_params with instantiation params
731 if vnf_params:
732 vld_instantiation_params = find_in_list(get_iterable(vnf_params, "internal-vld"),
733 lambda i_vld: i_vld["name"] == vld["id"])
734 if vld_instantiation_params:
735 vld_params.update(vld_instantiation_params)
736 parse_vld_instantiation_params(target_vim, vld, vld_params, target_sdn)
737
738 vdur_list = []
739 for vdur in target_vnf.get("vdur", ()):
740 if vdur.get("status") == "DELETING" or vdur.get("pdu-type"):
741 continue # This vdu must not be created
742 vdur["vim_info"] = {"vim_account_id": vnfr["vim-account-id"]}
743
744 self.logger.debug("NS > ssh_keys > {}".format(ssh_keys_all))
745
746 if ssh_keys_all:
747 vdu_configuration = get_configuration(vnfd, vdur["vdu-id-ref"])
748 vnf_configuration = get_configuration(vnfd, vnfd["id"])
749 if vdu_configuration and vdu_configuration.get("config-access") and \
750 vdu_configuration.get("config-access").get("ssh-access"):
751 vdur["ssh-keys"] = ssh_keys_all
752 vdur["ssh-access-required"] = vdu_configuration["config-access"]["ssh-access"]["required"]
753 elif vnf_configuration and vnf_configuration.get("config-access") and \
754 vnf_configuration.get("config-access").get("ssh-access") and \
755 any(iface.get("mgmt-vnf") for iface in vdur["interfaces"]):
756 vdur["ssh-keys"] = ssh_keys_all
757 vdur["ssh-access-required"] = vnf_configuration["config-access"]["ssh-access"]["required"]
758 elif ssh_keys_instantiation and \
759 find_in_list(vdur["interfaces"], lambda iface: iface.get("mgmt-vnf")):
760 vdur["ssh-keys"] = ssh_keys_instantiation
761
762 self.logger.debug("NS > vdur > {}".format(vdur))
763
764 vdud = get_vdu(vnfd, vdur["vdu-id-ref"])
765 # cloud-init
766 if vdud.get("cloud-init-file"):
767 vdur["cloud-init"] = "{}:file:{}".format(vnfd["_id"], vdud.get("cloud-init-file"))
768 # read file and put content at target.cloul_init_content. Avoid ng_ro to use shared package system
769 if vdur["cloud-init"] not in target["cloud_init_content"]:
770 base_folder = vnfd["_admin"]["storage"]
771 cloud_init_file = "{}/{}/cloud_init/{}".format(base_folder["folder"], base_folder["pkg-dir"],
772 vdud.get("cloud-init-file"))
773 with self.fs.file_open(cloud_init_file, "r") as ci_file:
774 target["cloud_init_content"][vdur["cloud-init"]] = ci_file.read()
775 elif vdud.get("cloud-init"):
776 vdur["cloud-init"] = "{}:vdu:{}".format(vnfd["_id"], get_vdu_index(vnfd, vdur["vdu-id-ref"]))
777 # put content at target.cloul_init_content. Avoid ng_ro read vnfd descriptor
778 target["cloud_init_content"][vdur["cloud-init"]] = vdud["cloud-init"]
779 vdur["additionalParams"] = vdur.get("additionalParams") or {}
780 deploy_params_vdu = self._format_additional_params(vdur.get("additionalParams") or {})
781 deploy_params_vdu["OSM"] = get_osm_params(vnfr, vdur["vdu-id-ref"], vdur["count-index"])
782 vdur["additionalParams"] = deploy_params_vdu
783
784 # flavor
785 ns_flavor = target["flavor"][int(vdur["ns-flavor-id"])]
786 if target_vim not in ns_flavor["vim_info"]:
787 ns_flavor["vim_info"][target_vim] = {}
788
789 # deal with images
790 # in case alternative images are provided we must check if they should be applied
791 # for the vim_type, modify the vim_type taking into account
792 ns_image_id = int(vdur["ns-image-id"])
793 if vdur.get("alt-image-ids"):
794 db_vim = get_vim_account(vnfr["vim-account-id"])
795 vim_type = db_vim["vim_type"]
796 for alt_image_id in vdur.get("alt-image-ids"):
797 ns_alt_image = target["image"][int(alt_image_id)]
798 if vim_type == ns_alt_image.get("vim-type"):
799 # must use alternative image
800 self.logger.debug("use alternative image id: {}".format(alt_image_id))
801 ns_image_id = alt_image_id
802 vdur["ns-image-id"] = ns_image_id
803 break
804 ns_image = target["image"][int(ns_image_id)]
805 if target_vim not in ns_image["vim_info"]:
806 ns_image["vim_info"][target_vim] = {}
807
808 vdur["vim_info"] = {target_vim: {}}
809 # instantiation parameters
810 # if vnf_params:
811 # vdu_instantiation_params = next((v for v in get_iterable(vnf_params, "vdu") if v["id"] ==
812 # vdud["id"]), None)
813 vdur_list.append(vdur)
814 target_vnf["vdur"] = vdur_list
815 target["vnf"].append(target_vnf)
816
817 desc = await self.RO.deploy(nsr_id, target)
818 self.logger.debug("RO return > {}".format(desc))
819 action_id = desc["action_id"]
820 await self._wait_ng_ro(nsr_id, action_id, nslcmop_id, start_deploy, timeout_ns_deploy, stage)
821
822 # Updating NSR
823 db_nsr_update = {
824 "_admin.deployed.RO.operational-status": "running",
825 "detailed-status": " ".join(stage)
826 }
827 # db_nsr["_admin.deployed.RO.detailed-status"] = "Deployed at VIM"
828 self.update_db_2("nsrs", nsr_id, db_nsr_update)
829 self._write_op_status(nslcmop_id, stage)
830 self.logger.debug(logging_text + "ns deployed at RO. RO_id={}".format(action_id))
831 return
832
833 async def _wait_ng_ro(self, nsr_id, action_id, nslcmop_id=None, start_time=None, timeout=600, stage=None):
834 detailed_status_old = None
835 db_nsr_update = {}
836 start_time = start_time or time()
837 while time() <= start_time + timeout:
838 desc_status = await self.RO.status(nsr_id, action_id)
839 self.logger.debug("Wait NG RO > {}".format(desc_status))
840 if desc_status["status"] == "FAILED":
841 raise NgRoException(desc_status["details"])
842 elif desc_status["status"] == "BUILD":
843 if stage:
844 stage[2] = "VIM: ({})".format(desc_status["details"])
845 elif desc_status["status"] == "DONE":
846 if stage:
847 stage[2] = "Deployed at VIM"
848 break
849 else:
850 assert False, "ROclient.check_ns_status returns unknown {}".format(desc_status["status"])
851 if stage and nslcmop_id and stage[2] != detailed_status_old:
852 detailed_status_old = stage[2]
853 db_nsr_update["detailed-status"] = " ".join(stage)
854 self.update_db_2("nsrs", nsr_id, db_nsr_update)
855 self._write_op_status(nslcmop_id, stage)
856 await asyncio.sleep(15, loop=self.loop)
857 else: # timeout_ns_deploy
858 raise NgRoException("Timeout waiting ns to deploy")
859
860 async def _terminate_ng_ro(self, logging_text, nsr_deployed, nsr_id, nslcmop_id, stage):
861 db_nsr_update = {}
862 failed_detail = []
863 action_id = None
864 start_deploy = time()
865 try:
866 target = {
867 "ns": {"vld": []},
868 "vnf": [],
869 "image": [],
870 "flavor": [],
871 "action_id": nslcmop_id
872 }
873 desc = await self.RO.deploy(nsr_id, target)
874 action_id = desc["action_id"]
875 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = action_id
876 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETING"
877 self.logger.debug(logging_text + "ns terminate action at RO. action_id={}".format(action_id))
878
879 # wait until done
880 delete_timeout = 20 * 60 # 20 minutes
881 await self._wait_ng_ro(nsr_id, action_id, nslcmop_id, start_deploy, delete_timeout, stage)
882
883 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
884 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
885 # delete all nsr
886 await self.RO.delete(nsr_id)
887 except Exception as e:
888 if isinstance(e, NgRoException) and e.http_code == 404: # not found
889 db_nsr_update["_admin.deployed.RO.nsr_id"] = None
890 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
891 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
892 self.logger.debug(logging_text + "RO_action_id={} already deleted".format(action_id))
893 elif isinstance(e, NgRoException) and e.http_code == 409: # conflict
894 failed_detail.append("delete conflict: {}".format(e))
895 self.logger.debug(logging_text + "RO_action_id={} delete conflict: {}".format(action_id, e))
896 else:
897 failed_detail.append("delete error: {}".format(e))
898 self.logger.error(logging_text + "RO_action_id={} delete error: {}".format(action_id, e))
899
900 if failed_detail:
901 stage[2] = "Error deleting from VIM"
902 else:
903 stage[2] = "Deleted from VIM"
904 db_nsr_update["detailed-status"] = " ".join(stage)
905 self.update_db_2("nsrs", nsr_id, db_nsr_update)
906 self._write_op_status(nslcmop_id, stage)
907
908 if failed_detail:
909 raise LcmException("; ".join(failed_detail))
910 return
911
912 async def instantiate_RO(self, logging_text, nsr_id, nsd, db_nsr, db_nslcmop, db_vnfrs, db_vnfds,
913 n2vc_key_list, stage):
914 """
915 Instantiate at RO
916 :param logging_text: preffix text to use at logging
917 :param nsr_id: nsr identity
918 :param nsd: database content of ns descriptor
919 :param db_nsr: database content of ns record
920 :param db_nslcmop: database content of ns operation, in this case, 'instantiate'
921 :param db_vnfrs:
922 :param db_vnfds: database content of vnfds, indexed by id (not _id). {id: {vnfd_object}, ...}
923 :param n2vc_key_list: ssh-public-key list to be inserted to management vdus via cloud-init
924 :param stage: list with 3 items: [general stage, tasks, vim_specific]. This task will write over vim_specific
925 :return: None or exception
926 """
927 try:
928 start_deploy = time()
929 ns_params = db_nslcmop.get("operationParams")
930 if ns_params and ns_params.get("timeout_ns_deploy"):
931 timeout_ns_deploy = ns_params["timeout_ns_deploy"]
932 else:
933 timeout_ns_deploy = self.timeout.get("ns_deploy", self.timeout_ns_deploy)
934
935 # Check for and optionally request placement optimization. Database will be updated if placement activated
936 stage[2] = "Waiting for Placement."
937 if await self._do_placement(logging_text, db_nslcmop, db_vnfrs):
938 # in case of placement change ns_params[vimAcountId) if not present at any vnfrs
939 for vnfr in db_vnfrs.values():
940 if ns_params["vimAccountId"] == vnfr["vim-account-id"]:
941 break
942 else:
943 ns_params["vimAccountId"] == vnfr["vim-account-id"]
944
945 return await self._instantiate_ng_ro(logging_text, nsr_id, nsd, db_nsr, db_nslcmop, db_vnfrs,
946 db_vnfds, n2vc_key_list, stage, start_deploy, timeout_ns_deploy)
947 except Exception as e:
948 stage[2] = "ERROR deploying at VIM"
949 self.set_vnfr_at_error(db_vnfrs, str(e))
950 self.logger.error("Error deploying at VIM {}".format(e),
951 exc_info=not isinstance(e, (ROclient.ROClientException, LcmException, DbException,
952 NgRoException)))
953 raise
954
955 async def wait_kdu_up(self, logging_text, nsr_id, vnfr_id, kdu_name):
956 """
957 Wait for kdu to be up, get ip address
958 :param logging_text: prefix use for logging
959 :param nsr_id:
960 :param vnfr_id:
961 :param kdu_name:
962 :return: IP address
963 """
964
965 # self.logger.debug(logging_text + "Starting wait_kdu_up")
966 nb_tries = 0
967
968 while nb_tries < 360:
969 db_vnfr = self.db.get_one("vnfrs", {"_id": vnfr_id})
970 kdur = next((x for x in get_iterable(db_vnfr, "kdur") if x.get("kdu-name") == kdu_name), None)
971 if not kdur:
972 raise LcmException("Not found vnfr_id={}, kdu_name={}".format(vnfr_id, kdu_name))
973 if kdur.get("status"):
974 if kdur["status"] in ("READY", "ENABLED"):
975 return kdur.get("ip-address")
976 else:
977 raise LcmException("target KDU={} is in error state".format(kdu_name))
978
979 await asyncio.sleep(10, loop=self.loop)
980 nb_tries += 1
981 raise LcmException("Timeout waiting KDU={} instantiated".format(kdu_name))
982
983 async def wait_vm_up_insert_key_ro(self, logging_text, nsr_id, vnfr_id, vdu_id, vdu_index, pub_key=None, user=None):
984 """
985 Wait for ip addres at RO, and optionally, insert public key in virtual machine
986 :param logging_text: prefix use for logging
987 :param nsr_id:
988 :param vnfr_id:
989 :param vdu_id:
990 :param vdu_index:
991 :param pub_key: public ssh key to inject, None to skip
992 :param user: user to apply the public ssh key
993 :return: IP address
994 """
995
996 self.logger.debug(logging_text + "Starting wait_vm_up_insert_key_ro")
997 ro_nsr_id = None
998 ip_address = None
999 nb_tries = 0
1000 target_vdu_id = None
1001 ro_retries = 0
1002
1003 while True:
1004
1005 ro_retries += 1
1006 if ro_retries >= 360: # 1 hour
1007 raise LcmException("Not found _admin.deployed.RO.nsr_id for nsr_id: {}".format(nsr_id))
1008
1009 await asyncio.sleep(10, loop=self.loop)
1010
1011 # get ip address
1012 if not target_vdu_id:
1013 db_vnfr = self.db.get_one("vnfrs", {"_id": vnfr_id})
1014
1015 if not vdu_id: # for the VNF case
1016 if db_vnfr.get("status") == "ERROR":
1017 raise LcmException("Cannot inject ssh-key because target VNF is in error state")
1018 ip_address = db_vnfr.get("ip-address")
1019 if not ip_address:
1020 continue
1021 vdur = next((x for x in get_iterable(db_vnfr, "vdur") if x.get("ip-address") == ip_address), None)
1022 else: # VDU case
1023 vdur = next((x for x in get_iterable(db_vnfr, "vdur")
1024 if x.get("vdu-id-ref") == vdu_id and x.get("count-index") == vdu_index), None)
1025
1026 if not vdur and len(db_vnfr.get("vdur", ())) == 1: # If only one, this should be the target vdu
1027 vdur = db_vnfr["vdur"][0]
1028 if not vdur:
1029 raise LcmException("Not found vnfr_id={}, vdu_id={}, vdu_index={}".format(vnfr_id, vdu_id,
1030 vdu_index))
1031 # New generation RO stores information at "vim_info"
1032 ng_ro_status = None
1033 target_vim = None
1034 if vdur.get("vim_info"):
1035 target_vim = next(t for t in vdur["vim_info"]) # there should be only one key
1036 ng_ro_status = vdur["vim_info"][target_vim].get("vim_status")
1037 if vdur.get("pdu-type") or vdur.get("status") == "ACTIVE" or ng_ro_status == "ACTIVE":
1038 ip_address = vdur.get("ip-address")
1039 if not ip_address:
1040 continue
1041 target_vdu_id = vdur["vdu-id-ref"]
1042 elif vdur.get("status") == "ERROR" or ng_ro_status == "ERROR":
1043 raise LcmException("Cannot inject ssh-key because target VM is in error state")
1044
1045 if not target_vdu_id:
1046 continue
1047
1048 # inject public key into machine
1049 if pub_key and user:
1050 self.logger.debug(logging_text + "Inserting RO key")
1051 self.logger.debug("SSH > PubKey > {}".format(pub_key))
1052 if vdur.get("pdu-type"):
1053 self.logger.error(logging_text + "Cannot inject ssh-ky to a PDU")
1054 return ip_address
1055 try:
1056 ro_vm_id = "{}-{}".format(db_vnfr["member-vnf-index-ref"], target_vdu_id) # TODO add vdu_index
1057 if self.ng_ro:
1058 target = {"action": {"action": "inject_ssh_key", "key": pub_key, "user": user},
1059 "vnf": [{"_id": vnfr_id, "vdur": [{"id": vdur["id"]}]}],
1060 }
1061 desc = await self.RO.deploy(nsr_id, target)
1062 action_id = desc["action_id"]
1063 await self._wait_ng_ro(nsr_id, action_id, timeout=600)
1064 break
1065 else:
1066 # wait until NS is deployed at RO
1067 if not ro_nsr_id:
1068 db_nsrs = self.db.get_one("nsrs", {"_id": nsr_id})
1069 ro_nsr_id = deep_get(db_nsrs, ("_admin", "deployed", "RO", "nsr_id"))
1070 if not ro_nsr_id:
1071 continue
1072 result_dict = await self.RO.create_action(
1073 item="ns",
1074 item_id_name=ro_nsr_id,
1075 descriptor={"add_public_key": pub_key, "vms": [ro_vm_id], "user": user}
1076 )
1077 # result_dict contains the format {VM-id: {vim_result: 200, description: text}}
1078 if not result_dict or not isinstance(result_dict, dict):
1079 raise LcmException("Unknown response from RO when injecting key")
1080 for result in result_dict.values():
1081 if result.get("vim_result") == 200:
1082 break
1083 else:
1084 raise ROclient.ROClientException("error injecting key: {}".format(
1085 result.get("description")))
1086 break
1087 except NgRoException as e:
1088 raise LcmException("Reaching max tries injecting key. Error: {}".format(e))
1089 except ROclient.ROClientException as e:
1090 if not nb_tries:
1091 self.logger.debug(logging_text + "error injecting key: {}. Retrying until {} seconds".
1092 format(e, 20*10))
1093 nb_tries += 1
1094 if nb_tries >= 20:
1095 raise LcmException("Reaching max tries injecting key. Error: {}".format(e))
1096 else:
1097 break
1098
1099 return ip_address
1100
1101 async def _wait_dependent_n2vc(self, nsr_id, vca_deployed_list, vca_index):
1102 """
1103 Wait until dependent VCA deployments have been finished. NS wait for VNFs and VDUs. VNFs for VDUs
1104 """
1105 my_vca = vca_deployed_list[vca_index]
1106 if my_vca.get("vdu_id") or my_vca.get("kdu_name"):
1107 # vdu or kdu: no dependencies
1108 return
1109 timeout = 300
1110 while timeout >= 0:
1111 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
1112 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
1113 configuration_status_list = db_nsr["configurationStatus"]
1114 for index, vca_deployed in enumerate(configuration_status_list):
1115 if index == vca_index:
1116 # myself
1117 continue
1118 if not my_vca.get("member-vnf-index") or \
1119 (vca_deployed.get("member-vnf-index") == my_vca.get("member-vnf-index")):
1120 internal_status = configuration_status_list[index].get("status")
1121 if internal_status == 'READY':
1122 continue
1123 elif internal_status == 'BROKEN':
1124 raise LcmException("Configuration aborted because dependent charm/s has failed")
1125 else:
1126 break
1127 else:
1128 # no dependencies, return
1129 return
1130 await asyncio.sleep(10)
1131 timeout -= 1
1132
1133 raise LcmException("Configuration aborted because dependent charm/s timeout")
1134
1135 async def instantiate_N2VC(self, logging_text, vca_index, nsi_id, db_nsr, db_vnfr, vdu_id, kdu_name, vdu_index,
1136 config_descriptor, deploy_params, base_folder, nslcmop_id, stage, vca_type, vca_name,
1137 ee_config_descriptor):
1138 nsr_id = db_nsr["_id"]
1139 db_update_entry = "_admin.deployed.VCA.{}.".format(vca_index)
1140 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
1141 vca_deployed = db_nsr["_admin"]["deployed"]["VCA"][vca_index]
1142 osm_config = {"osm": {"ns_id": db_nsr["_id"]}}
1143 db_dict = {
1144 'collection': 'nsrs',
1145 'filter': {'_id': nsr_id},
1146 'path': db_update_entry
1147 }
1148 step = ""
1149 try:
1150
1151 element_type = 'NS'
1152 element_under_configuration = nsr_id
1153
1154 vnfr_id = None
1155 if db_vnfr:
1156 vnfr_id = db_vnfr["_id"]
1157 osm_config["osm"]["vnf_id"] = vnfr_id
1158
1159 namespace = "{nsi}.{ns}".format(
1160 nsi=nsi_id if nsi_id else "",
1161 ns=nsr_id)
1162
1163 if vnfr_id:
1164 element_type = 'VNF'
1165 element_under_configuration = vnfr_id
1166 namespace += ".{}".format(vnfr_id)
1167 if vdu_id:
1168 namespace += ".{}-{}".format(vdu_id, vdu_index or 0)
1169 element_type = 'VDU'
1170 element_under_configuration = "{}-{}".format(vdu_id, vdu_index or 0)
1171 osm_config["osm"]["vdu_id"] = vdu_id
1172 elif kdu_name:
1173 namespace += ".{}".format(kdu_name)
1174 element_type = 'KDU'
1175 element_under_configuration = kdu_name
1176 osm_config["osm"]["kdu_name"] = kdu_name
1177
1178 # Get artifact path
1179 artifact_path = "{}/{}/{}/{}".format(
1180 base_folder["folder"],
1181 base_folder["pkg-dir"],
1182 "charms" if vca_type in ("native_charm", "lxc_proxy_charm", "k8s_proxy_charm") else "helm-charts",
1183 vca_name
1184 )
1185
1186 self.logger.debug("Artifact path > {}".format(artifact_path))
1187
1188 # get initial_config_primitive_list that applies to this element
1189 initial_config_primitive_list = config_descriptor.get('initial-config-primitive')
1190
1191 self.logger.debug("Initial config primitive list > {}".format(initial_config_primitive_list))
1192
1193 # add config if not present for NS charm
1194 ee_descriptor_id = ee_config_descriptor.get("id")
1195 self.logger.debug("EE Descriptor > {}".format(ee_descriptor_id))
1196 initial_config_primitive_list = get_ee_sorted_initial_config_primitive_list(initial_config_primitive_list,
1197 vca_deployed, ee_descriptor_id)
1198
1199 self.logger.debug("Initial config primitive list #2 > {}".format(initial_config_primitive_list))
1200 # n2vc_redesign STEP 3.1
1201 # find old ee_id if exists
1202 ee_id = vca_deployed.get("ee_id")
1203
1204 vim_account_id = (
1205 deep_get(db_vnfr, ("vim-account-id",)) or
1206 deep_get(deploy_params, ("OSM", "vim_account_id"))
1207 )
1208 vca_cloud, vca_cloud_credential = self.get_vca_cloud_and_credentials(vim_account_id)
1209 vca_k8s_cloud, vca_k8s_cloud_credential = self.get_vca_k8s_cloud_and_credentials(vim_account_id)
1210 # create or register execution environment in VCA
1211 if vca_type in ("lxc_proxy_charm", "k8s_proxy_charm", "helm", "helm-v3"):
1212
1213 self._write_configuration_status(
1214 nsr_id=nsr_id,
1215 vca_index=vca_index,
1216 status='CREATING',
1217 element_under_configuration=element_under_configuration,
1218 element_type=element_type
1219 )
1220
1221 step = "create execution environment"
1222 self.logger.debug(logging_text + step)
1223
1224 ee_id = None
1225 credentials = None
1226 if vca_type == "k8s_proxy_charm":
1227 ee_id = await self.vca_map[vca_type].install_k8s_proxy_charm(
1228 charm_name=artifact_path[artifact_path.rfind("/") + 1:],
1229 namespace=namespace,
1230 artifact_path=artifact_path,
1231 db_dict=db_dict,
1232 cloud_name=vca_k8s_cloud,
1233 credential_name=vca_k8s_cloud_credential,
1234 )
1235 elif vca_type == "helm" or vca_type == "helm-v3":
1236 ee_id, credentials = await self.vca_map[vca_type].create_execution_environment(
1237 namespace=namespace,
1238 reuse_ee_id=ee_id,
1239 db_dict=db_dict,
1240 config=osm_config,
1241 artifact_path=artifact_path,
1242 vca_type=vca_type
1243 )
1244 else:
1245 ee_id, credentials = await self.vca_map[vca_type].create_execution_environment(
1246 namespace=namespace,
1247 reuse_ee_id=ee_id,
1248 db_dict=db_dict,
1249 cloud_name=vca_cloud,
1250 credential_name=vca_cloud_credential,
1251 )
1252
1253 elif vca_type == "native_charm":
1254 step = "Waiting to VM being up and getting IP address"
1255 self.logger.debug(logging_text + step)
1256 rw_mgmt_ip = await self.wait_vm_up_insert_key_ro(logging_text, nsr_id, vnfr_id, vdu_id, vdu_index,
1257 user=None, pub_key=None)
1258 credentials = {"hostname": rw_mgmt_ip}
1259 # get username
1260 username = deep_get(config_descriptor, ("config-access", "ssh-access", "default-user"))
1261 # TODO remove this when changes on IM regarding config-access:ssh-access:default-user were
1262 # merged. Meanwhile let's get username from initial-config-primitive
1263 if not username and initial_config_primitive_list:
1264 for config_primitive in initial_config_primitive_list:
1265 for param in config_primitive.get("parameter", ()):
1266 if param["name"] == "ssh-username":
1267 username = param["value"]
1268 break
1269 if not username:
1270 raise LcmException("Cannot determine the username neither with 'initial-config-primitive' nor with "
1271 "'config-access.ssh-access.default-user'")
1272 credentials["username"] = username
1273 # n2vc_redesign STEP 3.2
1274
1275 self._write_configuration_status(
1276 nsr_id=nsr_id,
1277 vca_index=vca_index,
1278 status='REGISTERING',
1279 element_under_configuration=element_under_configuration,
1280 element_type=element_type
1281 )
1282
1283 step = "register execution environment {}".format(credentials)
1284 self.logger.debug(logging_text + step)
1285 ee_id = await self.vca_map[vca_type].register_execution_environment(
1286 credentials=credentials,
1287 namespace=namespace,
1288 db_dict=db_dict,
1289 cloud_name=vca_cloud,
1290 credential_name=vca_cloud_credential,
1291 )
1292
1293 # for compatibility with MON/POL modules, the need model and application name at database
1294 # TODO ask MON/POL if needed to not assuming anymore the format "model_name.application_name"
1295 ee_id_parts = ee_id.split('.')
1296 db_nsr_update = {db_update_entry + "ee_id": ee_id}
1297 if len(ee_id_parts) >= 2:
1298 model_name = ee_id_parts[0]
1299 application_name = ee_id_parts[1]
1300 db_nsr_update[db_update_entry + "model"] = model_name
1301 db_nsr_update[db_update_entry + "application"] = application_name
1302
1303 # n2vc_redesign STEP 3.3
1304 step = "Install configuration Software"
1305
1306 self._write_configuration_status(
1307 nsr_id=nsr_id,
1308 vca_index=vca_index,
1309 status='INSTALLING SW',
1310 element_under_configuration=element_under_configuration,
1311 element_type=element_type,
1312 other_update=db_nsr_update
1313 )
1314
1315 # TODO check if already done
1316 self.logger.debug(logging_text + step)
1317 config = None
1318 if vca_type == "native_charm":
1319 config_primitive = next((p for p in initial_config_primitive_list if p["name"] == "config"), None)
1320 if config_primitive:
1321 config = self._map_primitive_params(
1322 config_primitive,
1323 {},
1324 deploy_params
1325 )
1326 num_units = 1
1327 if vca_type == "lxc_proxy_charm":
1328 if element_type == "NS":
1329 num_units = db_nsr.get("config-units") or 1
1330 elif element_type == "VNF":
1331 num_units = db_vnfr.get("config-units") or 1
1332 elif element_type == "VDU":
1333 for v in db_vnfr["vdur"]:
1334 if vdu_id == v["vdu-id-ref"]:
1335 num_units = v.get("config-units") or 1
1336 break
1337 if vca_type != "k8s_proxy_charm":
1338 await self.vca_map[vca_type].install_configuration_sw(
1339 ee_id=ee_id,
1340 artifact_path=artifact_path,
1341 db_dict=db_dict,
1342 config=config,
1343 num_units=num_units,
1344 )
1345
1346 # write in db flag of configuration_sw already installed
1347 self.update_db_2("nsrs", nsr_id, {db_update_entry + "config_sw_installed": True})
1348
1349 # add relations for this VCA (wait for other peers related with this VCA)
1350 await self._add_vca_relations(logging_text=logging_text, nsr_id=nsr_id,
1351 vca_index=vca_index, vca_type=vca_type)
1352
1353 # if SSH access is required, then get execution environment SSH public
1354 # if native charm we have waited already to VM be UP
1355 if vca_type in ("k8s_proxy_charm", "lxc_proxy_charm", "helm", "helm-v3"):
1356 pub_key = None
1357 user = None
1358 # self.logger.debug("get ssh key block")
1359 if deep_get(config_descriptor, ("config-access", "ssh-access", "required")):
1360 # self.logger.debug("ssh key needed")
1361 # Needed to inject a ssh key
1362 user = deep_get(config_descriptor, ("config-access", "ssh-access", "default-user"))
1363 step = "Install configuration Software, getting public ssh key"
1364 pub_key = await self.vca_map[vca_type].get_ee_ssh_public__key(ee_id=ee_id, db_dict=db_dict)
1365
1366 step = "Insert public key into VM user={} ssh_key={}".format(user, pub_key)
1367 else:
1368 # self.logger.debug("no need to get ssh key")
1369 step = "Waiting to VM being up and getting IP address"
1370 self.logger.debug(logging_text + step)
1371
1372 # n2vc_redesign STEP 5.1
1373 # wait for RO (ip-address) Insert pub_key into VM
1374 if vnfr_id:
1375 if kdu_name:
1376 rw_mgmt_ip = await self.wait_kdu_up(logging_text, nsr_id, vnfr_id, kdu_name)
1377 else:
1378 rw_mgmt_ip = await self.wait_vm_up_insert_key_ro(logging_text, nsr_id, vnfr_id, vdu_id,
1379 vdu_index, user=user, pub_key=pub_key)
1380 else:
1381 rw_mgmt_ip = None # This is for a NS configuration
1382
1383 self.logger.debug(logging_text + ' VM_ip_address={}'.format(rw_mgmt_ip))
1384
1385 # store rw_mgmt_ip in deploy params for later replacement
1386 deploy_params["rw_mgmt_ip"] = rw_mgmt_ip
1387
1388 # n2vc_redesign STEP 6 Execute initial config primitive
1389 step = 'execute initial config primitive'
1390
1391 # wait for dependent primitives execution (NS -> VNF -> VDU)
1392 if initial_config_primitive_list:
1393 await self._wait_dependent_n2vc(nsr_id, vca_deployed_list, vca_index)
1394
1395 # stage, in function of element type: vdu, kdu, vnf or ns
1396 my_vca = vca_deployed_list[vca_index]
1397 if my_vca.get("vdu_id") or my_vca.get("kdu_name"):
1398 # VDU or KDU
1399 stage[0] = 'Stage 3/5: running Day-1 primitives for VDU.'
1400 elif my_vca.get("member-vnf-index"):
1401 # VNF
1402 stage[0] = 'Stage 4/5: running Day-1 primitives for VNF.'
1403 else:
1404 # NS
1405 stage[0] = 'Stage 5/5: running Day-1 primitives for NS.'
1406
1407 self._write_configuration_status(
1408 nsr_id=nsr_id,
1409 vca_index=vca_index,
1410 status='EXECUTING PRIMITIVE'
1411 )
1412
1413 self._write_op_status(
1414 op_id=nslcmop_id,
1415 stage=stage
1416 )
1417
1418 check_if_terminated_needed = True
1419 for initial_config_primitive in initial_config_primitive_list:
1420 # adding information on the vca_deployed if it is a NS execution environment
1421 if not vca_deployed["member-vnf-index"]:
1422 deploy_params["ns_config_info"] = json.dumps(self._get_ns_config_info(nsr_id))
1423 # TODO check if already done
1424 primitive_params_ = self._map_primitive_params(initial_config_primitive, {}, deploy_params)
1425
1426 step = "execute primitive '{}' params '{}'".format(initial_config_primitive["name"], primitive_params_)
1427 self.logger.debug(logging_text + step)
1428 await self.vca_map[vca_type].exec_primitive(
1429 ee_id=ee_id,
1430 primitive_name=initial_config_primitive["name"],
1431 params_dict=primitive_params_,
1432 db_dict=db_dict
1433 )
1434 # Once some primitive has been exec, check and write at db if it needs to exec terminated primitives
1435 if check_if_terminated_needed:
1436 if config_descriptor.get('terminate-config-primitive'):
1437 self.update_db_2("nsrs", nsr_id, {db_update_entry + "needed_terminate": True})
1438 check_if_terminated_needed = False
1439
1440 # TODO register in database that primitive is done
1441
1442 # STEP 7 Configure metrics
1443 if vca_type == "helm" or vca_type == "helm-v3":
1444 prometheus_jobs = await self.add_prometheus_metrics(
1445 ee_id=ee_id,
1446 artifact_path=artifact_path,
1447 ee_config_descriptor=ee_config_descriptor,
1448 vnfr_id=vnfr_id,
1449 nsr_id=nsr_id,
1450 target_ip=rw_mgmt_ip,
1451 )
1452 if prometheus_jobs:
1453 self.update_db_2("nsrs", nsr_id, {db_update_entry + "prometheus_jobs": prometheus_jobs})
1454
1455 step = "instantiated at VCA"
1456 self.logger.debug(logging_text + step)
1457
1458 self._write_configuration_status(
1459 nsr_id=nsr_id,
1460 vca_index=vca_index,
1461 status='READY'
1462 )
1463
1464 except Exception as e: # TODO not use Exception but N2VC exception
1465 # self.update_db_2("nsrs", nsr_id, {db_update_entry + "instantiation": "FAILED"})
1466 if not isinstance(e, (DbException, N2VCException, LcmException, asyncio.CancelledError)):
1467 self.logger.error("Exception while {} : {}".format(step, e), exc_info=True)
1468 self._write_configuration_status(
1469 nsr_id=nsr_id,
1470 vca_index=vca_index,
1471 status='BROKEN'
1472 )
1473 raise LcmException("{} {}".format(step, e)) from e
1474
1475 def _write_ns_status(self, nsr_id: str, ns_state: str, current_operation: str, current_operation_id: str,
1476 error_description: str = None, error_detail: str = None, other_update: dict = None):
1477 """
1478 Update db_nsr fields.
1479 :param nsr_id:
1480 :param ns_state:
1481 :param current_operation:
1482 :param current_operation_id:
1483 :param error_description:
1484 :param error_detail:
1485 :param other_update: Other required changes at database if provided, will be cleared
1486 :return:
1487 """
1488 try:
1489 db_dict = other_update or {}
1490 db_dict["_admin.nslcmop"] = current_operation_id # for backward compatibility
1491 db_dict["_admin.current-operation"] = current_operation_id
1492 db_dict["_admin.operation-type"] = current_operation if current_operation != "IDLE" else None
1493 db_dict["currentOperation"] = current_operation
1494 db_dict["currentOperationID"] = current_operation_id
1495 db_dict["errorDescription"] = error_description
1496 db_dict["errorDetail"] = error_detail
1497
1498 if ns_state:
1499 db_dict["nsState"] = ns_state
1500 self.update_db_2("nsrs", nsr_id, db_dict)
1501 except DbException as e:
1502 self.logger.warn('Error writing NS status, ns={}: {}'.format(nsr_id, e))
1503
1504 def _write_op_status(self, op_id: str, stage: list = None, error_message: str = None, queuePosition: int = 0,
1505 operation_state: str = None, other_update: dict = None):
1506 try:
1507 db_dict = other_update or {}
1508 db_dict['queuePosition'] = queuePosition
1509 if isinstance(stage, list):
1510 db_dict['stage'] = stage[0]
1511 db_dict['detailed-status'] = " ".join(stage)
1512 elif stage is not None:
1513 db_dict['stage'] = str(stage)
1514
1515 if error_message is not None:
1516 db_dict['errorMessage'] = error_message
1517 if operation_state is not None:
1518 db_dict['operationState'] = operation_state
1519 db_dict["statusEnteredTime"] = time()
1520 self.update_db_2("nslcmops", op_id, db_dict)
1521 except DbException as e:
1522 self.logger.warn('Error writing OPERATION status for op_id: {} -> {}'.format(op_id, e))
1523
1524 def _write_all_config_status(self, db_nsr: dict, status: str):
1525 try:
1526 nsr_id = db_nsr["_id"]
1527 # configurationStatus
1528 config_status = db_nsr.get('configurationStatus')
1529 if config_status:
1530 db_nsr_update = {"configurationStatus.{}.status".format(index): status for index, v in
1531 enumerate(config_status) if v}
1532 # update status
1533 self.update_db_2("nsrs", nsr_id, db_nsr_update)
1534
1535 except DbException as e:
1536 self.logger.warn('Error writing all configuration status, ns={}: {}'.format(nsr_id, e))
1537
1538 def _write_configuration_status(self, nsr_id: str, vca_index: int, status: str = None,
1539 element_under_configuration: str = None, element_type: str = None,
1540 other_update: dict = None):
1541
1542 # self.logger.debug('_write_configuration_status(): vca_index={}, status={}'
1543 # .format(vca_index, status))
1544
1545 try:
1546 db_path = 'configurationStatus.{}.'.format(vca_index)
1547 db_dict = other_update or {}
1548 if status:
1549 db_dict[db_path + 'status'] = status
1550 if element_under_configuration:
1551 db_dict[db_path + 'elementUnderConfiguration'] = element_under_configuration
1552 if element_type:
1553 db_dict[db_path + 'elementType'] = element_type
1554 self.update_db_2("nsrs", nsr_id, db_dict)
1555 except DbException as e:
1556 self.logger.warn('Error writing configuration status={}, ns={}, vca_index={}: {}'
1557 .format(status, nsr_id, vca_index, e))
1558
1559 async def _do_placement(self, logging_text, db_nslcmop, db_vnfrs):
1560 """
1561 Check and computes the placement, (vim account where to deploy). If it is decided by an external tool, it
1562 sends the request via kafka and wait until the result is wrote at database (nslcmops _admin.plca).
1563 Database is used because the result can be obtained from a different LCM worker in case of HA.
1564 :param logging_text: contains the prefix for logging, with the ns and nslcmop identifiers
1565 :param db_nslcmop: database content of nslcmop
1566 :param db_vnfrs: database content of vnfrs, indexed by member-vnf-index.
1567 :return: True if some modification is done. Modifies database vnfrs and parameter db_vnfr with the
1568 computed 'vim-account-id'
1569 """
1570 modified = False
1571 nslcmop_id = db_nslcmop['_id']
1572 placement_engine = deep_get(db_nslcmop, ('operationParams', 'placement-engine'))
1573 if placement_engine == "PLA":
1574 self.logger.debug(logging_text + "Invoke and wait for placement optimization")
1575 await self.msg.aiowrite("pla", "get_placement", {'nslcmopId': nslcmop_id}, loop=self.loop)
1576 db_poll_interval = 5
1577 wait = db_poll_interval * 10
1578 pla_result = None
1579 while not pla_result and wait >= 0:
1580 await asyncio.sleep(db_poll_interval)
1581 wait -= db_poll_interval
1582 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
1583 pla_result = deep_get(db_nslcmop, ('_admin', 'pla'))
1584
1585 if not pla_result:
1586 raise LcmException("Placement timeout for nslcmopId={}".format(nslcmop_id))
1587
1588 for pla_vnf in pla_result['vnf']:
1589 vnfr = db_vnfrs.get(pla_vnf['member-vnf-index'])
1590 if not pla_vnf.get('vimAccountId') or not vnfr:
1591 continue
1592 modified = True
1593 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, {"vim-account-id": pla_vnf['vimAccountId']})
1594 # Modifies db_vnfrs
1595 vnfr["vim-account-id"] = pla_vnf['vimAccountId']
1596 return modified
1597
1598 def update_nsrs_with_pla_result(self, params):
1599 try:
1600 nslcmop_id = deep_get(params, ('placement', 'nslcmopId'))
1601 self.update_db_2("nslcmops", nslcmop_id, {"_admin.pla": params.get('placement')})
1602 except Exception as e:
1603 self.logger.warn('Update failed for nslcmop_id={}:{}'.format(nslcmop_id, e))
1604
1605 async def instantiate(self, nsr_id, nslcmop_id):
1606 """
1607
1608 :param nsr_id: ns instance to deploy
1609 :param nslcmop_id: operation to run
1610 :return:
1611 """
1612
1613 # Try to lock HA task here
1614 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
1615 if not task_is_locked_by_me:
1616 self.logger.debug('instantiate() task is not locked by me, ns={}'.format(nsr_id))
1617 return
1618
1619 logging_text = "Task ns={} instantiate={} ".format(nsr_id, nslcmop_id)
1620 self.logger.debug(logging_text + "Enter")
1621
1622 # get all needed from database
1623
1624 # database nsrs record
1625 db_nsr = None
1626
1627 # database nslcmops record
1628 db_nslcmop = None
1629
1630 # update operation on nsrs
1631 db_nsr_update = {}
1632 # update operation on nslcmops
1633 db_nslcmop_update = {}
1634
1635 nslcmop_operation_state = None
1636 db_vnfrs = {} # vnf's info indexed by member-index
1637 # n2vc_info = {}
1638 tasks_dict_info = {} # from task to info text
1639 exc = None
1640 error_list = []
1641 stage = ['Stage 1/5: preparation of the environment.', "Waiting for previous operations to terminate.", ""]
1642 # ^ stage, step, VIM progress
1643 try:
1644 # wait for any previous tasks in process
1645 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
1646
1647 stage[1] = "Sync filesystem from database."
1648 self.fs.sync() # TODO, make use of partial sync, only for the needed packages
1649
1650 # STEP 0: Reading database (nslcmops, nsrs, nsds, vnfrs, vnfds)
1651 stage[1] = "Reading from database."
1652 # nsState="BUILDING", currentOperation="INSTANTIATING", currentOperationID=nslcmop_id
1653 db_nsr_update["detailed-status"] = "creating"
1654 db_nsr_update["operational-status"] = "init"
1655 self._write_ns_status(
1656 nsr_id=nsr_id,
1657 ns_state="BUILDING",
1658 current_operation="INSTANTIATING",
1659 current_operation_id=nslcmop_id,
1660 other_update=db_nsr_update
1661 )
1662 self._write_op_status(
1663 op_id=nslcmop_id,
1664 stage=stage,
1665 queuePosition=0
1666 )
1667
1668 # read from db: operation
1669 stage[1] = "Getting nslcmop={} from db.".format(nslcmop_id)
1670 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
1671 ns_params = db_nslcmop.get("operationParams")
1672 if ns_params and ns_params.get("timeout_ns_deploy"):
1673 timeout_ns_deploy = ns_params["timeout_ns_deploy"]
1674 else:
1675 timeout_ns_deploy = self.timeout.get("ns_deploy", self.timeout_ns_deploy)
1676
1677 # read from db: ns
1678 stage[1] = "Getting nsr={} from db.".format(nsr_id)
1679 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
1680 stage[1] = "Getting nsd={} from db.".format(db_nsr["nsd-id"])
1681 nsd = self.db.get_one("nsds", {"_id": db_nsr["nsd-id"]})
1682 db_nsr["nsd"] = nsd
1683 # nsr_name = db_nsr["name"] # TODO short-name??
1684
1685 # read from db: vnf's of this ns
1686 stage[1] = "Getting vnfrs from db."
1687 self.logger.debug(logging_text + stage[1])
1688 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
1689
1690 # read from db: vnfd's for every vnf
1691 db_vnfds = [] # every vnfd data
1692
1693 # for each vnf in ns, read vnfd
1694 for vnfr in db_vnfrs_list:
1695 db_vnfrs[vnfr["member-vnf-index-ref"]] = vnfr
1696 vnfd_id = vnfr["vnfd-id"]
1697 vnfd_ref = vnfr["vnfd-ref"]
1698
1699 # if we haven't this vnfd, read it from db
1700 if vnfd_id not in db_vnfds:
1701 # read from db
1702 stage[1] = "Getting vnfd={} id='{}' from db.".format(vnfd_id, vnfd_ref)
1703 self.logger.debug(logging_text + stage[1])
1704 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
1705
1706 # store vnfd
1707 db_vnfds.append(vnfd)
1708
1709 # Get or generates the _admin.deployed.VCA list
1710 vca_deployed_list = None
1711 if db_nsr["_admin"].get("deployed"):
1712 vca_deployed_list = db_nsr["_admin"]["deployed"].get("VCA")
1713 if vca_deployed_list is None:
1714 vca_deployed_list = []
1715 configuration_status_list = []
1716 db_nsr_update["_admin.deployed.VCA"] = vca_deployed_list
1717 db_nsr_update["configurationStatus"] = configuration_status_list
1718 # add _admin.deployed.VCA to db_nsr dictionary, value=vca_deployed_list
1719 populate_dict(db_nsr, ("_admin", "deployed", "VCA"), vca_deployed_list)
1720 elif isinstance(vca_deployed_list, dict):
1721 # maintain backward compatibility. Change a dict to list at database
1722 vca_deployed_list = list(vca_deployed_list.values())
1723 db_nsr_update["_admin.deployed.VCA"] = vca_deployed_list
1724 populate_dict(db_nsr, ("_admin", "deployed", "VCA"), vca_deployed_list)
1725
1726 if not isinstance(deep_get(db_nsr, ("_admin", "deployed", "RO", "vnfd")), list):
1727 populate_dict(db_nsr, ("_admin", "deployed", "RO", "vnfd"), [])
1728 db_nsr_update["_admin.deployed.RO.vnfd"] = []
1729
1730 # set state to INSTANTIATED. When instantiated NBI will not delete directly
1731 db_nsr_update["_admin.nsState"] = "INSTANTIATED"
1732 self.update_db_2("nsrs", nsr_id, db_nsr_update)
1733 self.db.set_list("vnfrs", {"nsr-id-ref": nsr_id}, {"_admin.nsState": "INSTANTIATED"})
1734
1735 # n2vc_redesign STEP 2 Deploy Network Scenario
1736 stage[0] = 'Stage 2/5: deployment of KDUs, VMs and execution environments.'
1737 self._write_op_status(
1738 op_id=nslcmop_id,
1739 stage=stage
1740 )
1741
1742 stage[1] = "Deploying KDUs."
1743 # self.logger.debug(logging_text + "Before deploy_kdus")
1744 # Call to deploy_kdus in case exists the "vdu:kdu" param
1745 await self.deploy_kdus(
1746 logging_text=logging_text,
1747 nsr_id=nsr_id,
1748 nslcmop_id=nslcmop_id,
1749 db_vnfrs=db_vnfrs,
1750 db_vnfds=db_vnfds,
1751 task_instantiation_info=tasks_dict_info,
1752 )
1753
1754 stage[1] = "Getting VCA public key."
1755 # n2vc_redesign STEP 1 Get VCA public ssh-key
1756 # feature 1429. Add n2vc public key to needed VMs
1757 n2vc_key = self.n2vc.get_public_key()
1758 n2vc_key_list = [n2vc_key]
1759 if self.vca_config.get("public_key"):
1760 n2vc_key_list.append(self.vca_config["public_key"])
1761
1762 stage[1] = "Deploying NS at VIM."
1763 task_ro = asyncio.ensure_future(
1764 self.instantiate_RO(
1765 logging_text=logging_text,
1766 nsr_id=nsr_id,
1767 nsd=nsd,
1768 db_nsr=db_nsr,
1769 db_nslcmop=db_nslcmop,
1770 db_vnfrs=db_vnfrs,
1771 db_vnfds=db_vnfds,
1772 n2vc_key_list=n2vc_key_list,
1773 stage=stage
1774 )
1775 )
1776 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_RO", task_ro)
1777 tasks_dict_info[task_ro] = "Deploying at VIM"
1778
1779 # n2vc_redesign STEP 3 to 6 Deploy N2VC
1780 stage[1] = "Deploying Execution Environments."
1781 self.logger.debug(logging_text + stage[1])
1782
1783 nsi_id = None # TODO put nsi_id when this nsr belongs to a NSI
1784 for vnf_profile in get_vnf_profiles(nsd):
1785 vnfd_id = vnf_profile["vnfd-id"]
1786 vnfd = find_in_list(db_vnfds, lambda a_vnf: a_vnf["id"] == vnfd_id)
1787 member_vnf_index = str(vnf_profile["id"])
1788 db_vnfr = db_vnfrs[member_vnf_index]
1789 base_folder = vnfd["_admin"]["storage"]
1790 vdu_id = None
1791 vdu_index = 0
1792 vdu_name = None
1793 kdu_name = None
1794
1795 # Get additional parameters
1796 deploy_params = {"OSM": get_osm_params(db_vnfr)}
1797 if db_vnfr.get("additionalParamsForVnf"):
1798 deploy_params.update(parse_yaml_strings(db_vnfr["additionalParamsForVnf"].copy()))
1799
1800 descriptor_config = get_configuration(vnfd, vnfd["id"])
1801 if descriptor_config:
1802 self._deploy_n2vc(
1803 logging_text=logging_text + "member_vnf_index={} ".format(member_vnf_index),
1804 db_nsr=db_nsr,
1805 db_vnfr=db_vnfr,
1806 nslcmop_id=nslcmop_id,
1807 nsr_id=nsr_id,
1808 nsi_id=nsi_id,
1809 vnfd_id=vnfd_id,
1810 vdu_id=vdu_id,
1811 kdu_name=kdu_name,
1812 member_vnf_index=member_vnf_index,
1813 vdu_index=vdu_index,
1814 vdu_name=vdu_name,
1815 deploy_params=deploy_params,
1816 descriptor_config=descriptor_config,
1817 base_folder=base_folder,
1818 task_instantiation_info=tasks_dict_info,
1819 stage=stage
1820 )
1821
1822 # Deploy charms for each VDU that supports one.
1823 for vdud in get_vdu_list(vnfd):
1824 vdu_id = vdud["id"]
1825 descriptor_config = get_configuration(vnfd, vdu_id)
1826 vdur = find_in_list(db_vnfr["vdur"], lambda vdu: vdu["vdu-id-ref"] == vdu_id)
1827
1828 if vdur.get("additionalParams"):
1829 deploy_params_vdu = parse_yaml_strings(vdur["additionalParams"])
1830 else:
1831 deploy_params_vdu = deploy_params
1832 deploy_params_vdu["OSM"] = get_osm_params(db_vnfr, vdu_id, vdu_count_index=0)
1833 vdud_count = get_vdu_profile(vnfd, vdu_id).get("max-number-of-instances", 1)
1834
1835 self.logger.debug("VDUD > {}".format(vdud))
1836 self.logger.debug("Descriptor config > {}".format(descriptor_config))
1837 if descriptor_config:
1838 vdu_name = None
1839 kdu_name = None
1840 for vdu_index in range(vdud_count):
1841 # TODO vnfr_params["rw_mgmt_ip"] = vdur["ip-address"]
1842 self._deploy_n2vc(
1843 logging_text=logging_text + "member_vnf_index={}, vdu_id={}, vdu_index={} ".format(
1844 member_vnf_index, vdu_id, vdu_index),
1845 db_nsr=db_nsr,
1846 db_vnfr=db_vnfr,
1847 nslcmop_id=nslcmop_id,
1848 nsr_id=nsr_id,
1849 nsi_id=nsi_id,
1850 vnfd_id=vnfd_id,
1851 vdu_id=vdu_id,
1852 kdu_name=kdu_name,
1853 member_vnf_index=member_vnf_index,
1854 vdu_index=vdu_index,
1855 vdu_name=vdu_name,
1856 deploy_params=deploy_params_vdu,
1857 descriptor_config=descriptor_config,
1858 base_folder=base_folder,
1859 task_instantiation_info=tasks_dict_info,
1860 stage=stage
1861 )
1862 for kdud in get_kdu_list(vnfd):
1863 kdu_name = kdud["name"]
1864 descriptor_config = get_configuration(vnfd, kdu_name)
1865 if descriptor_config:
1866 vdu_id = None
1867 vdu_index = 0
1868 vdu_name = None
1869 kdur = next(x for x in db_vnfr["kdur"] if x["kdu-name"] == kdu_name)
1870 deploy_params_kdu = {"OSM": get_osm_params(db_vnfr)}
1871 if kdur.get("additionalParams"):
1872 deploy_params_kdu = parse_yaml_strings(kdur["additionalParams"])
1873
1874 self._deploy_n2vc(
1875 logging_text=logging_text,
1876 db_nsr=db_nsr,
1877 db_vnfr=db_vnfr,
1878 nslcmop_id=nslcmop_id,
1879 nsr_id=nsr_id,
1880 nsi_id=nsi_id,
1881 vnfd_id=vnfd_id,
1882 vdu_id=vdu_id,
1883 kdu_name=kdu_name,
1884 member_vnf_index=member_vnf_index,
1885 vdu_index=vdu_index,
1886 vdu_name=vdu_name,
1887 deploy_params=deploy_params_kdu,
1888 descriptor_config=descriptor_config,
1889 base_folder=base_folder,
1890 task_instantiation_info=tasks_dict_info,
1891 stage=stage
1892 )
1893
1894 # Check if this NS has a charm configuration
1895 descriptor_config = nsd.get("ns-configuration")
1896 if descriptor_config and descriptor_config.get("juju"):
1897 vnfd_id = None
1898 db_vnfr = None
1899 member_vnf_index = None
1900 vdu_id = None
1901 kdu_name = None
1902 vdu_index = 0
1903 vdu_name = None
1904
1905 # Get additional parameters
1906 deploy_params = {"OSM": {"vim_account_id": ns_params["vimAccountId"]}}
1907 if db_nsr.get("additionalParamsForNs"):
1908 deploy_params.update(parse_yaml_strings(db_nsr["additionalParamsForNs"].copy()))
1909 base_folder = nsd["_admin"]["storage"]
1910 self._deploy_n2vc(
1911 logging_text=logging_text,
1912 db_nsr=db_nsr,
1913 db_vnfr=db_vnfr,
1914 nslcmop_id=nslcmop_id,
1915 nsr_id=nsr_id,
1916 nsi_id=nsi_id,
1917 vnfd_id=vnfd_id,
1918 vdu_id=vdu_id,
1919 kdu_name=kdu_name,
1920 member_vnf_index=member_vnf_index,
1921 vdu_index=vdu_index,
1922 vdu_name=vdu_name,
1923 deploy_params=deploy_params,
1924 descriptor_config=descriptor_config,
1925 base_folder=base_folder,
1926 task_instantiation_info=tasks_dict_info,
1927 stage=stage
1928 )
1929
1930 # rest of staff will be done at finally
1931
1932 except (ROclient.ROClientException, DbException, LcmException, N2VCException) as e:
1933 self.logger.error(logging_text + "Exit Exception while '{}': {}".format(stage[1], e))
1934 exc = e
1935 except asyncio.CancelledError:
1936 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(stage[1]))
1937 exc = "Operation was cancelled"
1938 except Exception as e:
1939 exc = traceback.format_exc()
1940 self.logger.critical(logging_text + "Exit Exception while '{}': {}".format(stage[1], e), exc_info=True)
1941 finally:
1942 if exc:
1943 error_list.append(str(exc))
1944 try:
1945 # wait for pending tasks
1946 if tasks_dict_info:
1947 stage[1] = "Waiting for instantiate pending tasks."
1948 self.logger.debug(logging_text + stage[1])
1949 error_list += await self._wait_for_tasks(logging_text, tasks_dict_info, timeout_ns_deploy,
1950 stage, nslcmop_id, nsr_id=nsr_id)
1951 stage[1] = stage[2] = ""
1952 except asyncio.CancelledError:
1953 error_list.append("Cancelled")
1954 # TODO cancel all tasks
1955 except Exception as exc:
1956 error_list.append(str(exc))
1957
1958 # update operation-status
1959 db_nsr_update["operational-status"] = "running"
1960 # let's begin with VCA 'configured' status (later we can change it)
1961 db_nsr_update["config-status"] = "configured"
1962 for task, task_name in tasks_dict_info.items():
1963 if not task.done() or task.cancelled() or task.exception():
1964 if task_name.startswith(self.task_name_deploy_vca):
1965 # A N2VC task is pending
1966 db_nsr_update["config-status"] = "failed"
1967 else:
1968 # RO or KDU task is pending
1969 db_nsr_update["operational-status"] = "failed"
1970
1971 # update status at database
1972 if error_list:
1973 error_detail = ". ".join(error_list)
1974 self.logger.error(logging_text + error_detail)
1975 error_description_nslcmop = '{} Detail: {}'.format(stage[0], error_detail)
1976 error_description_nsr = 'Operation: INSTANTIATING.{}, {}'.format(nslcmop_id, stage[0])
1977
1978 db_nsr_update["detailed-status"] = error_description_nsr + " Detail: " + error_detail
1979 db_nslcmop_update["detailed-status"] = error_detail
1980 nslcmop_operation_state = "FAILED"
1981 ns_state = "BROKEN"
1982 else:
1983 error_detail = None
1984 error_description_nsr = error_description_nslcmop = None
1985 ns_state = "READY"
1986 db_nsr_update["detailed-status"] = "Done"
1987 db_nslcmop_update["detailed-status"] = "Done"
1988 nslcmop_operation_state = "COMPLETED"
1989
1990 if db_nsr:
1991 self._write_ns_status(
1992 nsr_id=nsr_id,
1993 ns_state=ns_state,
1994 current_operation="IDLE",
1995 current_operation_id=None,
1996 error_description=error_description_nsr,
1997 error_detail=error_detail,
1998 other_update=db_nsr_update
1999 )
2000 self._write_op_status(
2001 op_id=nslcmop_id,
2002 stage="",
2003 error_message=error_description_nslcmop,
2004 operation_state=nslcmop_operation_state,
2005 other_update=db_nslcmop_update,
2006 )
2007
2008 if nslcmop_operation_state:
2009 try:
2010 await self.msg.aiowrite("ns", "instantiated", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
2011 "operationState": nslcmop_operation_state},
2012 loop=self.loop)
2013 except Exception as e:
2014 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
2015
2016 self.logger.debug(logging_text + "Exit")
2017 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_instantiate")
2018
2019 async def _add_vca_relations(self, logging_text, nsr_id, vca_index: int,
2020 timeout: int = 3600, vca_type: str = None) -> bool:
2021
2022 # steps:
2023 # 1. find all relations for this VCA
2024 # 2. wait for other peers related
2025 # 3. add relations
2026
2027 try:
2028 vca_type = vca_type or "lxc_proxy_charm"
2029
2030 # STEP 1: find all relations for this VCA
2031
2032 # read nsr record
2033 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2034 nsd = self.db.get_one("nsds", {"_id": db_nsr["nsd-id"]})
2035
2036 # this VCA data
2037 my_vca = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))[vca_index]
2038
2039 # read all ns-configuration relations
2040 ns_relations = list()
2041 db_ns_relations = deep_get(nsd, ('ns-configuration', 'relation'))
2042 if db_ns_relations:
2043 for r in db_ns_relations:
2044 # check if this VCA is in the relation
2045 if my_vca.get('member-vnf-index') in\
2046 (r.get('entities')[0].get('id'), r.get('entities')[1].get('id')):
2047 ns_relations.append(r)
2048
2049 # read all vnf-configuration relations
2050 vnf_relations = list()
2051 db_vnfd_list = db_nsr.get('vnfd-id')
2052 if db_vnfd_list:
2053 for vnfd in db_vnfd_list:
2054 db_vnfd = self.db.get_one("vnfds", {"_id": vnfd})
2055 db_vnf_relations = get_configuration(db_vnfd, db_vnfd["id"]).get("relation", [])
2056 if db_vnf_relations:
2057 for r in db_vnf_relations:
2058 # check if this VCA is in the relation
2059 if my_vca.get('vdu_id') in (r.get('entities')[0].get('id'), r.get('entities')[1].get('id')):
2060 vnf_relations.append(r)
2061
2062 # if no relations, terminate
2063 if not ns_relations and not vnf_relations:
2064 self.logger.debug(logging_text + ' No relations')
2065 return True
2066
2067 self.logger.debug(logging_text + ' adding relations\n {}\n {}'.format(ns_relations, vnf_relations))
2068
2069 # add all relations
2070 start = time()
2071 while True:
2072 # check timeout
2073 now = time()
2074 if now - start >= timeout:
2075 self.logger.error(logging_text + ' : timeout adding relations')
2076 return False
2077
2078 # reload nsr from database (we need to update record: _admin.deloyed.VCA)
2079 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2080
2081 # for each defined NS relation, find the VCA's related
2082 for r in ns_relations.copy():
2083 from_vca_ee_id = None
2084 to_vca_ee_id = None
2085 from_vca_endpoint = None
2086 to_vca_endpoint = None
2087 vca_list = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))
2088 for vca in vca_list:
2089 if vca.get('member-vnf-index') == r.get('entities')[0].get('id') \
2090 and vca.get('config_sw_installed'):
2091 from_vca_ee_id = vca.get('ee_id')
2092 from_vca_endpoint = r.get('entities')[0].get('endpoint')
2093 if vca.get('member-vnf-index') == r.get('entities')[1].get('id') \
2094 and vca.get('config_sw_installed'):
2095 to_vca_ee_id = vca.get('ee_id')
2096 to_vca_endpoint = r.get('entities')[1].get('endpoint')
2097 if from_vca_ee_id and to_vca_ee_id:
2098 # add relation
2099 await self.vca_map[vca_type].add_relation(
2100 ee_id_1=from_vca_ee_id,
2101 ee_id_2=to_vca_ee_id,
2102 endpoint_1=from_vca_endpoint,
2103 endpoint_2=to_vca_endpoint)
2104 # remove entry from relations list
2105 ns_relations.remove(r)
2106 else:
2107 # check failed peers
2108 try:
2109 vca_status_list = db_nsr.get('configurationStatus')
2110 if vca_status_list:
2111 for i in range(len(vca_list)):
2112 vca = vca_list[i]
2113 vca_status = vca_status_list[i]
2114 if vca.get('member-vnf-index') == r.get('entities')[0].get('id'):
2115 if vca_status.get('status') == 'BROKEN':
2116 # peer broken: remove relation from list
2117 ns_relations.remove(r)
2118 if vca.get('member-vnf-index') == r.get('entities')[1].get('id'):
2119 if vca_status.get('status') == 'BROKEN':
2120 # peer broken: remove relation from list
2121 ns_relations.remove(r)
2122 except Exception:
2123 # ignore
2124 pass
2125
2126 # for each defined VNF relation, find the VCA's related
2127 for r in vnf_relations.copy():
2128 from_vca_ee_id = None
2129 to_vca_ee_id = None
2130 from_vca_endpoint = None
2131 to_vca_endpoint = None
2132 vca_list = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))
2133 for vca in vca_list:
2134 key_to_check = "vdu_id"
2135 if vca.get("vdu_id") is None:
2136 key_to_check = "vnfd_id"
2137 if vca.get(key_to_check) == r.get('entities')[0].get('id') and vca.get('config_sw_installed'):
2138 from_vca_ee_id = vca.get('ee_id')
2139 from_vca_endpoint = r.get('entities')[0].get('endpoint')
2140 if vca.get(key_to_check) == r.get('entities')[1].get('id') and vca.get('config_sw_installed'):
2141 to_vca_ee_id = vca.get('ee_id')
2142 to_vca_endpoint = r.get('entities')[1].get('endpoint')
2143 if from_vca_ee_id and to_vca_ee_id:
2144 # add relation
2145 await self.vca_map[vca_type].add_relation(
2146 ee_id_1=from_vca_ee_id,
2147 ee_id_2=to_vca_ee_id,
2148 endpoint_1=from_vca_endpoint,
2149 endpoint_2=to_vca_endpoint)
2150 # remove entry from relations list
2151 vnf_relations.remove(r)
2152 else:
2153 # check failed peers
2154 try:
2155 vca_status_list = db_nsr.get('configurationStatus')
2156 if vca_status_list:
2157 for i in range(len(vca_list)):
2158 vca = vca_list[i]
2159 vca_status = vca_status_list[i]
2160 if vca.get('vdu_id') == r.get('entities')[0].get('id'):
2161 if vca_status.get('status') == 'BROKEN':
2162 # peer broken: remove relation from list
2163 vnf_relations.remove(r)
2164 if vca.get('vdu_id') == r.get('entities')[1].get('id'):
2165 if vca_status.get('status') == 'BROKEN':
2166 # peer broken: remove relation from list
2167 vnf_relations.remove(r)
2168 except Exception:
2169 # ignore
2170 pass
2171
2172 # wait for next try
2173 await asyncio.sleep(5.0)
2174
2175 if not ns_relations and not vnf_relations:
2176 self.logger.debug('Relations added')
2177 break
2178
2179 return True
2180
2181 except Exception as e:
2182 self.logger.warn(logging_text + ' ERROR adding relations: {}'.format(e))
2183 return False
2184
2185 async def _install_kdu(self, nsr_id: str, nsr_db_path: str, vnfr_data: dict, kdu_index: int, kdud: dict,
2186 vnfd: dict, k8s_instance_info: dict, k8params: dict = None, timeout: int = 600):
2187
2188 try:
2189 k8sclustertype = k8s_instance_info["k8scluster-type"]
2190 # Instantiate kdu
2191 db_dict_install = {"collection": "nsrs",
2192 "filter": {"_id": nsr_id},
2193 "path": nsr_db_path}
2194
2195 kdu_instance = await self.k8scluster_map[k8sclustertype].install(
2196 cluster_uuid=k8s_instance_info["k8scluster-uuid"],
2197 kdu_model=k8s_instance_info["kdu-model"],
2198 atomic=True,
2199 params=k8params,
2200 db_dict=db_dict_install,
2201 timeout=timeout,
2202 kdu_name=k8s_instance_info["kdu-name"],
2203 namespace=k8s_instance_info["namespace"])
2204 self.update_db_2("nsrs", nsr_id, {nsr_db_path + ".kdu-instance": kdu_instance})
2205
2206 # Obtain services to obtain management service ip
2207 services = await self.k8scluster_map[k8sclustertype].get_services(
2208 cluster_uuid=k8s_instance_info["k8scluster-uuid"],
2209 kdu_instance=kdu_instance,
2210 namespace=k8s_instance_info["namespace"])
2211
2212 # Obtain management service info (if exists)
2213 vnfr_update_dict = {}
2214 if services:
2215 vnfr_update_dict["kdur.{}.services".format(kdu_index)] = services
2216 mgmt_services = [service for service in kdud.get("service", []) if service.get("mgmt-service")]
2217 for mgmt_service in mgmt_services:
2218 for service in services:
2219 if service["name"].startswith(mgmt_service["name"]):
2220 # Mgmt service found, Obtain service ip
2221 ip = service.get("external_ip", service.get("cluster_ip"))
2222 if isinstance(ip, list) and len(ip) == 1:
2223 ip = ip[0]
2224
2225 vnfr_update_dict["kdur.{}.ip-address".format(kdu_index)] = ip
2226
2227 # Check if must update also mgmt ip at the vnf
2228 service_external_cp = mgmt_service.get("external-connection-point-ref")
2229 if service_external_cp:
2230 if deep_get(vnfd, ("mgmt-interface", "cp")) == service_external_cp:
2231 vnfr_update_dict["ip-address"] = ip
2232
2233 break
2234 else:
2235 self.logger.warn("Mgmt service name: {} not found".format(mgmt_service["name"]))
2236
2237 vnfr_update_dict["kdur.{}.status".format(kdu_index)] = "READY"
2238 self.update_db_2("vnfrs", vnfr_data.get("_id"), vnfr_update_dict)
2239
2240 kdu_config = get_configuration(vnfd, k8s_instance_info["kdu-name"])
2241 if kdu_config and kdu_config.get("initial-config-primitive") and \
2242 get_juju_ee_ref(vnfd, k8s_instance_info["kdu-name"]) is None:
2243 initial_config_primitive_list = kdu_config.get("initial-config-primitive")
2244 initial_config_primitive_list.sort(key=lambda val: int(val["seq"]))
2245
2246 for initial_config_primitive in initial_config_primitive_list:
2247 primitive_params_ = self._map_primitive_params(initial_config_primitive, {}, {})
2248
2249 await asyncio.wait_for(
2250 self.k8scluster_map[k8sclustertype].exec_primitive(
2251 cluster_uuid=k8s_instance_info["k8scluster-uuid"],
2252 kdu_instance=kdu_instance,
2253 primitive_name=initial_config_primitive["name"],
2254 params=primitive_params_, db_dict={}),
2255 timeout=timeout)
2256
2257 except Exception as e:
2258 # Prepare update db with error and raise exception
2259 try:
2260 self.update_db_2("nsrs", nsr_id, {nsr_db_path + ".detailed-status": str(e)})
2261 self.update_db_2("vnfrs", vnfr_data.get("_id"), {"kdur.{}.status".format(kdu_index): "ERROR"})
2262 except Exception:
2263 # ignore to keep original exception
2264 pass
2265 # reraise original error
2266 raise
2267
2268 return kdu_instance
2269
2270 async def deploy_kdus(self, logging_text, nsr_id, nslcmop_id, db_vnfrs, db_vnfds, task_instantiation_info):
2271 # Launch kdus if present in the descriptor
2272
2273 k8scluster_id_2_uuic = {"helm-chart-v3": {}, "helm-chart": {}, "juju-bundle": {}}
2274
2275 async def _get_cluster_id(cluster_id, cluster_type):
2276 nonlocal k8scluster_id_2_uuic
2277 if cluster_id in k8scluster_id_2_uuic[cluster_type]:
2278 return k8scluster_id_2_uuic[cluster_type][cluster_id]
2279
2280 # check if K8scluster is creating and wait look if previous tasks in process
2281 task_name, task_dependency = self.lcm_tasks.lookfor_related("k8scluster", cluster_id)
2282 if task_dependency:
2283 text = "Waiting for related tasks '{}' on k8scluster {} to be completed".format(task_name, cluster_id)
2284 self.logger.debug(logging_text + text)
2285 await asyncio.wait(task_dependency, timeout=3600)
2286
2287 db_k8scluster = self.db.get_one("k8sclusters", {"_id": cluster_id}, fail_on_empty=False)
2288 if not db_k8scluster:
2289 raise LcmException("K8s cluster {} cannot be found".format(cluster_id))
2290
2291 k8s_id = deep_get(db_k8scluster, ("_admin", cluster_type, "id"))
2292 if not k8s_id:
2293 if cluster_type == "helm-chart-v3":
2294 try:
2295 # backward compatibility for existing clusters that have not been initialized for helm v3
2296 k8s_credentials = yaml.safe_dump(db_k8scluster.get("credentials"))
2297 k8s_id, uninstall_sw = await self.k8sclusterhelm3.init_env(k8s_credentials,
2298 reuse_cluster_uuid=cluster_id)
2299 db_k8scluster_update = {}
2300 db_k8scluster_update["_admin.helm-chart-v3.error_msg"] = None
2301 db_k8scluster_update["_admin.helm-chart-v3.id"] = k8s_id
2302 db_k8scluster_update["_admin.helm-chart-v3.created"] = uninstall_sw
2303 db_k8scluster_update["_admin.helm-chart-v3.operationalState"] = "ENABLED"
2304 self.update_db_2("k8sclusters", cluster_id, db_k8scluster_update)
2305 except Exception as e:
2306 self.logger.error(logging_text + "error initializing helm-v3 cluster: {}".format(str(e)))
2307 raise LcmException("K8s cluster '{}' has not been initialized for '{}'".format(cluster_id,
2308 cluster_type))
2309 else:
2310 raise LcmException("K8s cluster '{}' has not been initialized for '{}'".
2311 format(cluster_id, cluster_type))
2312 k8scluster_id_2_uuic[cluster_type][cluster_id] = k8s_id
2313 return k8s_id
2314
2315 logging_text += "Deploy kdus: "
2316 step = ""
2317 try:
2318 db_nsr_update = {"_admin.deployed.K8s": []}
2319 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2320
2321 index = 0
2322 updated_cluster_list = []
2323 updated_v3_cluster_list = []
2324
2325 for vnfr_data in db_vnfrs.values():
2326 for kdu_index, kdur in enumerate(get_iterable(vnfr_data, "kdur")):
2327 # Step 0: Prepare and set parameters
2328 desc_params = parse_yaml_strings(kdur.get("additionalParams"))
2329 vnfd_id = vnfr_data.get('vnfd-id')
2330 vnfd_with_id = find_in_list(db_vnfds, lambda vnfd: vnfd["_id"] == vnfd_id)
2331 kdud = next(kdud for kdud in vnfd_with_id["kdu"] if kdud["name"] == kdur["kdu-name"])
2332 namespace = kdur.get("k8s-namespace")
2333 if kdur.get("helm-chart"):
2334 kdumodel = kdur["helm-chart"]
2335 # Default version: helm3, if helm-version is v2 assign v2
2336 k8sclustertype = "helm-chart-v3"
2337 self.logger.debug("kdur: {}".format(kdur))
2338 if kdur.get("helm-version") and kdur.get("helm-version") == "v2":
2339 k8sclustertype = "helm-chart"
2340 elif kdur.get("juju-bundle"):
2341 kdumodel = kdur["juju-bundle"]
2342 k8sclustertype = "juju-bundle"
2343 else:
2344 raise LcmException("kdu type for kdu='{}.{}' is neither helm-chart nor "
2345 "juju-bundle. Maybe an old NBI version is running".
2346 format(vnfr_data["member-vnf-index-ref"], kdur["kdu-name"]))
2347 # check if kdumodel is a file and exists
2348 try:
2349 vnfd_with_id = find_in_list(db_vnfds, lambda vnfd: vnfd["_id"] == vnfd_id)
2350 storage = deep_get(vnfd_with_id, ('_admin', 'storage'))
2351 if storage and storage.get('pkg-dir'): # may be not present if vnfd has not artifacts
2352 # path format: /vnfdid/pkkdir/helm-charts|juju-bundles/kdumodel
2353 filename = '{}/{}/{}s/{}'.format(storage["folder"], storage["pkg-dir"], k8sclustertype,
2354 kdumodel)
2355 if self.fs.file_exists(filename, mode='file') or self.fs.file_exists(filename, mode='dir'):
2356 kdumodel = self.fs.path + filename
2357 except (asyncio.TimeoutError, asyncio.CancelledError):
2358 raise
2359 except Exception: # it is not a file
2360 pass
2361
2362 k8s_cluster_id = kdur["k8s-cluster"]["id"]
2363 step = "Synchronize repos for k8s cluster '{}'".format(k8s_cluster_id)
2364 cluster_uuid = await _get_cluster_id(k8s_cluster_id, k8sclustertype)
2365
2366 # Synchronize repos
2367 if (k8sclustertype == "helm-chart" and cluster_uuid not in updated_cluster_list)\
2368 or (k8sclustertype == "helm-chart-v3" and cluster_uuid not in updated_v3_cluster_list):
2369 del_repo_list, added_repo_dict = await asyncio.ensure_future(
2370 self.k8scluster_map[k8sclustertype].synchronize_repos(cluster_uuid=cluster_uuid))
2371 if del_repo_list or added_repo_dict:
2372 if k8sclustertype == "helm-chart":
2373 unset = {'_admin.helm_charts_added.' + item: None for item in del_repo_list}
2374 updated = {'_admin.helm_charts_added.' +
2375 item: name for item, name in added_repo_dict.items()}
2376 updated_cluster_list.append(cluster_uuid)
2377 elif k8sclustertype == "helm-chart-v3":
2378 unset = {'_admin.helm_charts_v3_added.' + item: None for item in del_repo_list}
2379 updated = {'_admin.helm_charts_v3_added.' +
2380 item: name for item, name in added_repo_dict.items()}
2381 updated_v3_cluster_list.append(cluster_uuid)
2382 self.logger.debug(logging_text + "repos synchronized on k8s cluster "
2383 "'{}' to_delete: {}, to_add: {}".
2384 format(k8s_cluster_id, del_repo_list, added_repo_dict))
2385 self.db.set_one("k8sclusters", {"_id": k8s_cluster_id}, updated, unset=unset)
2386
2387 # Instantiate kdu
2388 step = "Instantiating KDU {}.{} in k8s cluster {}".format(vnfr_data["member-vnf-index-ref"],
2389 kdur["kdu-name"], k8s_cluster_id)
2390 k8s_instance_info = {"kdu-instance": None,
2391 "k8scluster-uuid": cluster_uuid,
2392 "k8scluster-type": k8sclustertype,
2393 "member-vnf-index": vnfr_data["member-vnf-index-ref"],
2394 "kdu-name": kdur["kdu-name"],
2395 "kdu-model": kdumodel,
2396 "namespace": namespace}
2397 db_path = "_admin.deployed.K8s.{}".format(index)
2398 db_nsr_update[db_path] = k8s_instance_info
2399 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2400 vnfd_with_id = find_in_list(db_vnfds, lambda vnf: vnf["_id"] == vnfd_id)
2401 task = asyncio.ensure_future(
2402 self._install_kdu(nsr_id, db_path, vnfr_data, kdu_index, kdud, vnfd_with_id,
2403 k8s_instance_info, k8params=desc_params, timeout=600))
2404 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_KDU-{}".format(index), task)
2405 task_instantiation_info[task] = "Deploying KDU {}".format(kdur["kdu-name"])
2406
2407 index += 1
2408
2409 except (LcmException, asyncio.CancelledError):
2410 raise
2411 except Exception as e:
2412 msg = "Exception {} while {}: {}".format(type(e).__name__, step, e)
2413 if isinstance(e, (N2VCException, DbException)):
2414 self.logger.error(logging_text + msg)
2415 else:
2416 self.logger.critical(logging_text + msg, exc_info=True)
2417 raise LcmException(msg)
2418 finally:
2419 if db_nsr_update:
2420 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2421
2422 def _deploy_n2vc(self, logging_text, db_nsr, db_vnfr, nslcmop_id, nsr_id, nsi_id, vnfd_id, vdu_id,
2423 kdu_name, member_vnf_index, vdu_index, vdu_name, deploy_params, descriptor_config,
2424 base_folder, task_instantiation_info, stage):
2425 # launch instantiate_N2VC in a asyncio task and register task object
2426 # Look where information of this charm is at database <nsrs>._admin.deployed.VCA
2427 # if not found, create one entry and update database
2428 # fill db_nsr._admin.deployed.VCA.<index>
2429
2430 self.logger.debug(logging_text + "_deploy_n2vc vnfd_id={}, vdu_id={}".format(vnfd_id, vdu_id))
2431 if "execution-environment-list" in descriptor_config:
2432 ee_list = descriptor_config.get("execution-environment-list", [])
2433 else: # other types as script are not supported
2434 ee_list = []
2435
2436 for ee_item in ee_list:
2437 self.logger.debug(logging_text + "_deploy_n2vc ee_item juju={}, helm={}".format(ee_item.get('juju'),
2438 ee_item.get("helm-chart")))
2439 ee_descriptor_id = ee_item.get("id")
2440 if ee_item.get("juju"):
2441 vca_name = ee_item['juju'].get('charm')
2442 vca_type = "lxc_proxy_charm" if ee_item['juju'].get('charm') is not None else "native_charm"
2443 if ee_item['juju'].get('cloud') == "k8s":
2444 vca_type = "k8s_proxy_charm"
2445 elif ee_item['juju'].get('proxy') is False:
2446 vca_type = "native_charm"
2447 elif ee_item.get("helm-chart"):
2448 vca_name = ee_item['helm-chart']
2449 if ee_item.get("helm-version") and ee_item.get("helm-version") == "v2":
2450 vca_type = "helm"
2451 else:
2452 vca_type = "helm-v3"
2453 else:
2454 self.logger.debug(logging_text + "skipping non juju neither charm configuration")
2455 continue
2456
2457 vca_index = -1
2458 for vca_index, vca_deployed in enumerate(db_nsr["_admin"]["deployed"]["VCA"]):
2459 if not vca_deployed:
2460 continue
2461 if vca_deployed.get("member-vnf-index") == member_vnf_index and \
2462 vca_deployed.get("vdu_id") == vdu_id and \
2463 vca_deployed.get("kdu_name") == kdu_name and \
2464 vca_deployed.get("vdu_count_index", 0) == vdu_index and \
2465 vca_deployed.get("ee_descriptor_id") == ee_descriptor_id:
2466 break
2467 else:
2468 # not found, create one.
2469 target = "ns" if not member_vnf_index else "vnf/{}".format(member_vnf_index)
2470 if vdu_id:
2471 target += "/vdu/{}/{}".format(vdu_id, vdu_index or 0)
2472 elif kdu_name:
2473 target += "/kdu/{}".format(kdu_name)
2474 vca_deployed = {
2475 "target_element": target,
2476 # ^ target_element will replace member-vnf-index, kdu_name, vdu_id ... in a single string
2477 "member-vnf-index": member_vnf_index,
2478 "vdu_id": vdu_id,
2479 "kdu_name": kdu_name,
2480 "vdu_count_index": vdu_index,
2481 "operational-status": "init", # TODO revise
2482 "detailed-status": "", # TODO revise
2483 "step": "initial-deploy", # TODO revise
2484 "vnfd_id": vnfd_id,
2485 "vdu_name": vdu_name,
2486 "type": vca_type,
2487 "ee_descriptor_id": ee_descriptor_id
2488 }
2489 vca_index += 1
2490
2491 # create VCA and configurationStatus in db
2492 db_dict = {
2493 "_admin.deployed.VCA.{}".format(vca_index): vca_deployed,
2494 "configurationStatus.{}".format(vca_index): dict()
2495 }
2496 self.update_db_2("nsrs", nsr_id, db_dict)
2497
2498 db_nsr["_admin"]["deployed"]["VCA"].append(vca_deployed)
2499
2500 self.logger.debug("N2VC > NSR_ID > {}".format(nsr_id))
2501 self.logger.debug("N2VC > DB_NSR > {}".format(db_nsr))
2502 self.logger.debug("N2VC > VCA_DEPLOYED > {}".format(vca_deployed))
2503
2504 # Launch task
2505 task_n2vc = asyncio.ensure_future(
2506 self.instantiate_N2VC(
2507 logging_text=logging_text,
2508 vca_index=vca_index,
2509 nsi_id=nsi_id,
2510 db_nsr=db_nsr,
2511 db_vnfr=db_vnfr,
2512 vdu_id=vdu_id,
2513 kdu_name=kdu_name,
2514 vdu_index=vdu_index,
2515 deploy_params=deploy_params,
2516 config_descriptor=descriptor_config,
2517 base_folder=base_folder,
2518 nslcmop_id=nslcmop_id,
2519 stage=stage,
2520 vca_type=vca_type,
2521 vca_name=vca_name,
2522 ee_config_descriptor=ee_item
2523 )
2524 )
2525 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_N2VC-{}".format(vca_index), task_n2vc)
2526 task_instantiation_info[task_n2vc] = self.task_name_deploy_vca + " {}.{}".format(
2527 member_vnf_index or "", vdu_id or "")
2528
2529 @staticmethod
2530 def _create_nslcmop(nsr_id, operation, params):
2531 """
2532 Creates a ns-lcm-opp content to be stored at database.
2533 :param nsr_id: internal id of the instance
2534 :param operation: instantiate, terminate, scale, action, ...
2535 :param params: user parameters for the operation
2536 :return: dictionary following SOL005 format
2537 """
2538 # Raise exception if invalid arguments
2539 if not (nsr_id and operation and params):
2540 raise LcmException(
2541 "Parameters 'nsr_id', 'operation' and 'params' needed to create primitive not provided")
2542 now = time()
2543 _id = str(uuid4())
2544 nslcmop = {
2545 "id": _id,
2546 "_id": _id,
2547 # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
2548 "operationState": "PROCESSING",
2549 "statusEnteredTime": now,
2550 "nsInstanceId": nsr_id,
2551 "lcmOperationType": operation,
2552 "startTime": now,
2553 "isAutomaticInvocation": False,
2554 "operationParams": params,
2555 "isCancelPending": False,
2556 "links": {
2557 "self": "/osm/nslcm/v1/ns_lcm_op_occs/" + _id,
2558 "nsInstance": "/osm/nslcm/v1/ns_instances/" + nsr_id,
2559 }
2560 }
2561 return nslcmop
2562
2563 def _format_additional_params(self, params):
2564 params = params or {}
2565 for key, value in params.items():
2566 if str(value).startswith("!!yaml "):
2567 params[key] = yaml.safe_load(value[7:])
2568 return params
2569
2570 def _get_terminate_primitive_params(self, seq, vnf_index):
2571 primitive = seq.get('name')
2572 primitive_params = {}
2573 params = {
2574 "member_vnf_index": vnf_index,
2575 "primitive": primitive,
2576 "primitive_params": primitive_params,
2577 }
2578 desc_params = {}
2579 return self._map_primitive_params(seq, params, desc_params)
2580
2581 # sub-operations
2582
2583 def _retry_or_skip_suboperation(self, db_nslcmop, op_index):
2584 op = deep_get(db_nslcmop, ('_admin', 'operations'), [])[op_index]
2585 if op.get('operationState') == 'COMPLETED':
2586 # b. Skip sub-operation
2587 # _ns_execute_primitive() or RO.create_action() will NOT be executed
2588 return self.SUBOPERATION_STATUS_SKIP
2589 else:
2590 # c. retry executing sub-operation
2591 # The sub-operation exists, and operationState != 'COMPLETED'
2592 # Update operationState = 'PROCESSING' to indicate a retry.
2593 operationState = 'PROCESSING'
2594 detailed_status = 'In progress'
2595 self._update_suboperation_status(
2596 db_nslcmop, op_index, operationState, detailed_status)
2597 # Return the sub-operation index
2598 # _ns_execute_primitive() or RO.create_action() will be called from scale()
2599 # with arguments extracted from the sub-operation
2600 return op_index
2601
2602 # Find a sub-operation where all keys in a matching dictionary must match
2603 # Returns the index of the matching sub-operation, or SUBOPERATION_STATUS_NOT_FOUND if no match
2604 def _find_suboperation(self, db_nslcmop, match):
2605 if db_nslcmop and match:
2606 op_list = db_nslcmop.get('_admin', {}).get('operations', [])
2607 for i, op in enumerate(op_list):
2608 if all(op.get(k) == match[k] for k in match):
2609 return i
2610 return self.SUBOPERATION_STATUS_NOT_FOUND
2611
2612 # Update status for a sub-operation given its index
2613 def _update_suboperation_status(self, db_nslcmop, op_index, operationState, detailed_status):
2614 # Update DB for HA tasks
2615 q_filter = {'_id': db_nslcmop['_id']}
2616 update_dict = {'_admin.operations.{}.operationState'.format(op_index): operationState,
2617 '_admin.operations.{}.detailed-status'.format(op_index): detailed_status}
2618 self.db.set_one("nslcmops",
2619 q_filter=q_filter,
2620 update_dict=update_dict,
2621 fail_on_empty=False)
2622
2623 # Add sub-operation, return the index of the added sub-operation
2624 # Optionally, set operationState, detailed-status, and operationType
2625 # Status and type are currently set for 'scale' sub-operations:
2626 # 'operationState' : 'PROCESSING' | 'COMPLETED' | 'FAILED'
2627 # 'detailed-status' : status message
2628 # 'operationType': may be any type, in the case of scaling: 'PRE-SCALE' | 'POST-SCALE'
2629 # Status and operation type are currently only used for 'scale', but NOT for 'terminate' sub-operations.
2630 def _add_suboperation(self, db_nslcmop, vnf_index, vdu_id, vdu_count_index, vdu_name, primitive,
2631 mapped_primitive_params, operationState=None, detailed_status=None, operationType=None,
2632 RO_nsr_id=None, RO_scaling_info=None):
2633 if not db_nslcmop:
2634 return self.SUBOPERATION_STATUS_NOT_FOUND
2635 # Get the "_admin.operations" list, if it exists
2636 db_nslcmop_admin = db_nslcmop.get('_admin', {})
2637 op_list = db_nslcmop_admin.get('operations')
2638 # Create or append to the "_admin.operations" list
2639 new_op = {'member_vnf_index': vnf_index,
2640 'vdu_id': vdu_id,
2641 'vdu_count_index': vdu_count_index,
2642 'primitive': primitive,
2643 'primitive_params': mapped_primitive_params}
2644 if operationState:
2645 new_op['operationState'] = operationState
2646 if detailed_status:
2647 new_op['detailed-status'] = detailed_status
2648 if operationType:
2649 new_op['lcmOperationType'] = operationType
2650 if RO_nsr_id:
2651 new_op['RO_nsr_id'] = RO_nsr_id
2652 if RO_scaling_info:
2653 new_op['RO_scaling_info'] = RO_scaling_info
2654 if not op_list:
2655 # No existing operations, create key 'operations' with current operation as first list element
2656 db_nslcmop_admin.update({'operations': [new_op]})
2657 op_list = db_nslcmop_admin.get('operations')
2658 else:
2659 # Existing operations, append operation to list
2660 op_list.append(new_op)
2661
2662 db_nslcmop_update = {'_admin.operations': op_list}
2663 self.update_db_2("nslcmops", db_nslcmop['_id'], db_nslcmop_update)
2664 op_index = len(op_list) - 1
2665 return op_index
2666
2667 # Helper methods for scale() sub-operations
2668
2669 # pre-scale/post-scale:
2670 # Check for 3 different cases:
2671 # a. New: First time execution, return SUBOPERATION_STATUS_NEW
2672 # b. Skip: Existing sub-operation exists, operationState == 'COMPLETED', return SUBOPERATION_STATUS_SKIP
2673 # c. retry: Existing sub-operation exists, operationState != 'COMPLETED', return op_index to re-execute
2674 def _check_or_add_scale_suboperation(self, db_nslcmop, vnf_index, vnf_config_primitive, primitive_params,
2675 operationType, RO_nsr_id=None, RO_scaling_info=None):
2676 # Find this sub-operation
2677 if RO_nsr_id and RO_scaling_info:
2678 operationType = 'SCALE-RO'
2679 match = {
2680 'member_vnf_index': vnf_index,
2681 'RO_nsr_id': RO_nsr_id,
2682 'RO_scaling_info': RO_scaling_info,
2683 }
2684 else:
2685 match = {
2686 'member_vnf_index': vnf_index,
2687 'primitive': vnf_config_primitive,
2688 'primitive_params': primitive_params,
2689 'lcmOperationType': operationType
2690 }
2691 op_index = self._find_suboperation(db_nslcmop, match)
2692 if op_index == self.SUBOPERATION_STATUS_NOT_FOUND:
2693 # a. New sub-operation
2694 # The sub-operation does not exist, add it.
2695 # _ns_execute_primitive() will be called from scale() as usual, with non-modified arguments
2696 # The following parameters are set to None for all kind of scaling:
2697 vdu_id = None
2698 vdu_count_index = None
2699 vdu_name = None
2700 if RO_nsr_id and RO_scaling_info:
2701 vnf_config_primitive = None
2702 primitive_params = None
2703 else:
2704 RO_nsr_id = None
2705 RO_scaling_info = None
2706 # Initial status for sub-operation
2707 operationState = 'PROCESSING'
2708 detailed_status = 'In progress'
2709 # Add sub-operation for pre/post-scaling (zero or more operations)
2710 self._add_suboperation(db_nslcmop,
2711 vnf_index,
2712 vdu_id,
2713 vdu_count_index,
2714 vdu_name,
2715 vnf_config_primitive,
2716 primitive_params,
2717 operationState,
2718 detailed_status,
2719 operationType,
2720 RO_nsr_id,
2721 RO_scaling_info)
2722 return self.SUBOPERATION_STATUS_NEW
2723 else:
2724 # Return either SUBOPERATION_STATUS_SKIP (operationState == 'COMPLETED'),
2725 # or op_index (operationState != 'COMPLETED')
2726 return self._retry_or_skip_suboperation(db_nslcmop, op_index)
2727
2728 # Function to return execution_environment id
2729
2730 def _get_ee_id(self, vnf_index, vdu_id, vca_deployed_list):
2731 # TODO vdu_index_count
2732 for vca in vca_deployed_list:
2733 if vca["member-vnf-index"] == vnf_index and vca["vdu_id"] == vdu_id:
2734 return vca["ee_id"]
2735
2736 async def destroy_N2VC(self, logging_text, db_nslcmop, vca_deployed, config_descriptor,
2737 vca_index, destroy_ee=True, exec_primitives=True):
2738 """
2739 Execute the terminate primitives and destroy the execution environment (if destroy_ee=False
2740 :param logging_text:
2741 :param db_nslcmop:
2742 :param vca_deployed: Dictionary of deployment info at db_nsr._admin.depoloyed.VCA.<INDEX>
2743 :param config_descriptor: Configuration descriptor of the NSD, VNFD, VNFD.vdu or VNFD.kdu
2744 :param vca_index: index in the database _admin.deployed.VCA
2745 :param destroy_ee: False to do not destroy, because it will be destroyed all of then at once
2746 :param exec_primitives: False to do not execute terminate primitives, because the config is not completed or has
2747 not executed properly
2748 :return: None or exception
2749 """
2750
2751 self.logger.debug(
2752 logging_text + " vca_index: {}, vca_deployed: {}, config_descriptor: {}, destroy_ee: {}".format(
2753 vca_index, vca_deployed, config_descriptor, destroy_ee
2754 )
2755 )
2756
2757 vca_type = vca_deployed.get("type", "lxc_proxy_charm")
2758
2759 # execute terminate_primitives
2760 if exec_primitives:
2761 terminate_primitives = get_ee_sorted_terminate_config_primitive_list(
2762 config_descriptor.get("terminate-config-primitive"), vca_deployed.get("ee_descriptor_id"))
2763 vdu_id = vca_deployed.get("vdu_id")
2764 vdu_count_index = vca_deployed.get("vdu_count_index")
2765 vdu_name = vca_deployed.get("vdu_name")
2766 vnf_index = vca_deployed.get("member-vnf-index")
2767 if terminate_primitives and vca_deployed.get("needed_terminate"):
2768 for seq in terminate_primitives:
2769 # For each sequence in list, get primitive and call _ns_execute_primitive()
2770 step = "Calling terminate action for vnf_member_index={} primitive={}".format(
2771 vnf_index, seq.get("name"))
2772 self.logger.debug(logging_text + step)
2773 # Create the primitive for each sequence, i.e. "primitive": "touch"
2774 primitive = seq.get('name')
2775 mapped_primitive_params = self._get_terminate_primitive_params(seq, vnf_index)
2776
2777 # Add sub-operation
2778 self._add_suboperation(db_nslcmop,
2779 vnf_index,
2780 vdu_id,
2781 vdu_count_index,
2782 vdu_name,
2783 primitive,
2784 mapped_primitive_params)
2785 # Sub-operations: Call _ns_execute_primitive() instead of action()
2786 try:
2787 result, result_detail = await self._ns_execute_primitive(vca_deployed["ee_id"], primitive,
2788 mapped_primitive_params,
2789 vca_type=vca_type)
2790 except LcmException:
2791 # this happens when VCA is not deployed. In this case it is not needed to terminate
2792 continue
2793 result_ok = ['COMPLETED', 'PARTIALLY_COMPLETED']
2794 if result not in result_ok:
2795 raise LcmException("terminate_primitive {} for vnf_member_index={} fails with "
2796 "error {}".format(seq.get("name"), vnf_index, result_detail))
2797 # set that this VCA do not need terminated
2798 db_update_entry = "_admin.deployed.VCA.{}.needed_terminate".format(vca_index)
2799 self.update_db_2("nsrs", db_nslcmop["nsInstanceId"], {db_update_entry: False})
2800
2801 if vca_deployed.get("prometheus_jobs") and self.prometheus:
2802 await self.prometheus.update(remove_jobs=vca_deployed["prometheus_jobs"])
2803
2804 if destroy_ee:
2805 await self.vca_map[vca_type].delete_execution_environment(vca_deployed["ee_id"])
2806
2807 async def _delete_all_N2VC(self, db_nsr: dict):
2808 self._write_all_config_status(db_nsr=db_nsr, status='TERMINATING')
2809 namespace = "." + db_nsr["_id"]
2810 try:
2811 await self.n2vc.delete_namespace(namespace=namespace, total_timeout=self.timeout_charm_delete)
2812 except N2VCNotFound: # already deleted. Skip
2813 pass
2814 self._write_all_config_status(db_nsr=db_nsr, status='DELETED')
2815
2816 async def _terminate_RO(self, logging_text, nsr_deployed, nsr_id, nslcmop_id, stage):
2817 """
2818 Terminates a deployment from RO
2819 :param logging_text:
2820 :param nsr_deployed: db_nsr._admin.deployed
2821 :param nsr_id:
2822 :param nslcmop_id:
2823 :param stage: list of string with the content to write on db_nslcmop.detailed-status.
2824 this method will update only the index 2, but it will write on database the concatenated content of the list
2825 :return:
2826 """
2827 db_nsr_update = {}
2828 failed_detail = []
2829 ro_nsr_id = ro_delete_action = None
2830 if nsr_deployed and nsr_deployed.get("RO"):
2831 ro_nsr_id = nsr_deployed["RO"].get("nsr_id")
2832 ro_delete_action = nsr_deployed["RO"].get("nsr_delete_action_id")
2833 try:
2834 if ro_nsr_id:
2835 stage[2] = "Deleting ns from VIM."
2836 db_nsr_update["detailed-status"] = " ".join(stage)
2837 self._write_op_status(nslcmop_id, stage)
2838 self.logger.debug(logging_text + stage[2])
2839 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2840 self._write_op_status(nslcmop_id, stage)
2841 desc = await self.RO.delete("ns", ro_nsr_id)
2842 ro_delete_action = desc["action_id"]
2843 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = ro_delete_action
2844 db_nsr_update["_admin.deployed.RO.nsr_id"] = None
2845 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2846 if ro_delete_action:
2847 # wait until NS is deleted from VIM
2848 stage[2] = "Waiting ns deleted from VIM."
2849 detailed_status_old = None
2850 self.logger.debug(logging_text + stage[2] + " RO_id={} ro_delete_action={}".format(ro_nsr_id,
2851 ro_delete_action))
2852 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2853 self._write_op_status(nslcmop_id, stage)
2854
2855 delete_timeout = 20 * 60 # 20 minutes
2856 while delete_timeout > 0:
2857 desc = await self.RO.show(
2858 "ns",
2859 item_id_name=ro_nsr_id,
2860 extra_item="action",
2861 extra_item_id=ro_delete_action)
2862
2863 # deploymentStatus
2864 self._on_update_ro_db(nsrs_id=nsr_id, ro_descriptor=desc)
2865
2866 ns_status, ns_status_info = self.RO.check_action_status(desc)
2867 if ns_status == "ERROR":
2868 raise ROclient.ROClientException(ns_status_info)
2869 elif ns_status == "BUILD":
2870 stage[2] = "Deleting from VIM {}".format(ns_status_info)
2871 elif ns_status == "ACTIVE":
2872 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
2873 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2874 break
2875 else:
2876 assert False, "ROclient.check_action_status returns unknown {}".format(ns_status)
2877 if stage[2] != detailed_status_old:
2878 detailed_status_old = stage[2]
2879 db_nsr_update["detailed-status"] = " ".join(stage)
2880 self._write_op_status(nslcmop_id, stage)
2881 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2882 await asyncio.sleep(5, loop=self.loop)
2883 delete_timeout -= 5
2884 else: # delete_timeout <= 0:
2885 raise ROclient.ROClientException("Timeout waiting ns deleted from VIM")
2886
2887 except Exception as e:
2888 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2889 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2890 db_nsr_update["_admin.deployed.RO.nsr_id"] = None
2891 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2892 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
2893 self.logger.debug(logging_text + "RO_ns_id={} already deleted".format(ro_nsr_id))
2894 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
2895 failed_detail.append("delete conflict: {}".format(e))
2896 self.logger.debug(logging_text + "RO_ns_id={} delete conflict: {}".format(ro_nsr_id, e))
2897 else:
2898 failed_detail.append("delete error: {}".format(e))
2899 self.logger.error(logging_text + "RO_ns_id={} delete error: {}".format(ro_nsr_id, e))
2900
2901 # Delete nsd
2902 if not failed_detail and deep_get(nsr_deployed, ("RO", "nsd_id")):
2903 ro_nsd_id = nsr_deployed["RO"]["nsd_id"]
2904 try:
2905 stage[2] = "Deleting nsd from RO."
2906 db_nsr_update["detailed-status"] = " ".join(stage)
2907 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2908 self._write_op_status(nslcmop_id, stage)
2909 await self.RO.delete("nsd", ro_nsd_id)
2910 self.logger.debug(logging_text + "ro_nsd_id={} deleted".format(ro_nsd_id))
2911 db_nsr_update["_admin.deployed.RO.nsd_id"] = None
2912 except Exception as e:
2913 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2914 db_nsr_update["_admin.deployed.RO.nsd_id"] = None
2915 self.logger.debug(logging_text + "ro_nsd_id={} already deleted".format(ro_nsd_id))
2916 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
2917 failed_detail.append("ro_nsd_id={} delete conflict: {}".format(ro_nsd_id, e))
2918 self.logger.debug(logging_text + failed_detail[-1])
2919 else:
2920 failed_detail.append("ro_nsd_id={} delete error: {}".format(ro_nsd_id, e))
2921 self.logger.error(logging_text + failed_detail[-1])
2922
2923 if not failed_detail and deep_get(nsr_deployed, ("RO", "vnfd")):
2924 for index, vnf_deployed in enumerate(nsr_deployed["RO"]["vnfd"]):
2925 if not vnf_deployed or not vnf_deployed["id"]:
2926 continue
2927 try:
2928 ro_vnfd_id = vnf_deployed["id"]
2929 stage[2] = "Deleting member_vnf_index={} ro_vnfd_id={} from RO.".format(
2930 vnf_deployed["member-vnf-index"], ro_vnfd_id)
2931 db_nsr_update["detailed-status"] = " ".join(stage)
2932 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2933 self._write_op_status(nslcmop_id, stage)
2934 await self.RO.delete("vnfd", ro_vnfd_id)
2935 self.logger.debug(logging_text + "ro_vnfd_id={} deleted".format(ro_vnfd_id))
2936 db_nsr_update["_admin.deployed.RO.vnfd.{}.id".format(index)] = None
2937 except Exception as e:
2938 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2939 db_nsr_update["_admin.deployed.RO.vnfd.{}.id".format(index)] = None
2940 self.logger.debug(logging_text + "ro_vnfd_id={} already deleted ".format(ro_vnfd_id))
2941 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
2942 failed_detail.append("ro_vnfd_id={} delete conflict: {}".format(ro_vnfd_id, e))
2943 self.logger.debug(logging_text + failed_detail[-1])
2944 else:
2945 failed_detail.append("ro_vnfd_id={} delete error: {}".format(ro_vnfd_id, e))
2946 self.logger.error(logging_text + failed_detail[-1])
2947
2948 if failed_detail:
2949 stage[2] = "Error deleting from VIM"
2950 else:
2951 stage[2] = "Deleted from VIM"
2952 db_nsr_update["detailed-status"] = " ".join(stage)
2953 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2954 self._write_op_status(nslcmop_id, stage)
2955
2956 if failed_detail:
2957 raise LcmException("; ".join(failed_detail))
2958
2959 async def terminate(self, nsr_id, nslcmop_id):
2960 # Try to lock HA task here
2961 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
2962 if not task_is_locked_by_me:
2963 return
2964
2965 logging_text = "Task ns={} terminate={} ".format(nsr_id, nslcmop_id)
2966 self.logger.debug(logging_text + "Enter")
2967 timeout_ns_terminate = self.timeout_ns_terminate
2968 db_nsr = None
2969 db_nslcmop = None
2970 operation_params = None
2971 exc = None
2972 error_list = [] # annotates all failed error messages
2973 db_nslcmop_update = {}
2974 autoremove = False # autoremove after terminated
2975 tasks_dict_info = {}
2976 db_nsr_update = {}
2977 stage = ["Stage 1/3: Preparing task.", "Waiting for previous operations to terminate.", ""]
2978 # ^ contains [stage, step, VIM-status]
2979 try:
2980 # wait for any previous tasks in process
2981 await self.lcm_tasks.waitfor_related_HA("ns", 'nslcmops', nslcmop_id)
2982
2983 stage[1] = "Getting nslcmop={} from db.".format(nslcmop_id)
2984 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
2985 operation_params = db_nslcmop.get("operationParams") or {}
2986 if operation_params.get("timeout_ns_terminate"):
2987 timeout_ns_terminate = operation_params["timeout_ns_terminate"]
2988 stage[1] = "Getting nsr={} from db.".format(nsr_id)
2989 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2990
2991 db_nsr_update["operational-status"] = "terminating"
2992 db_nsr_update["config-status"] = "terminating"
2993 self._write_ns_status(
2994 nsr_id=nsr_id,
2995 ns_state="TERMINATING",
2996 current_operation="TERMINATING",
2997 current_operation_id=nslcmop_id,
2998 other_update=db_nsr_update
2999 )
3000 self._write_op_status(
3001 op_id=nslcmop_id,
3002 queuePosition=0,
3003 stage=stage
3004 )
3005 nsr_deployed = deepcopy(db_nsr["_admin"].get("deployed")) or {}
3006 if db_nsr["_admin"]["nsState"] == "NOT_INSTANTIATED":
3007 return
3008
3009 stage[1] = "Getting vnf descriptors from db."
3010 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
3011 db_vnfds_from_id = {}
3012 db_vnfds_from_member_index = {}
3013 # Loop over VNFRs
3014 for vnfr in db_vnfrs_list:
3015 vnfd_id = vnfr["vnfd-id"]
3016 if vnfd_id not in db_vnfds_from_id:
3017 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
3018 db_vnfds_from_id[vnfd_id] = vnfd
3019 db_vnfds_from_member_index[vnfr["member-vnf-index-ref"]] = db_vnfds_from_id[vnfd_id]
3020
3021 # Destroy individual execution environments when there are terminating primitives.
3022 # Rest of EE will be deleted at once
3023 # TODO - check before calling _destroy_N2VC
3024 # if not operation_params.get("skip_terminate_primitives"):#
3025 # or not vca.get("needed_terminate"):
3026 stage[0] = "Stage 2/3 execute terminating primitives."
3027 self.logger.debug(logging_text + stage[0])
3028 stage[1] = "Looking execution environment that needs terminate."
3029 self.logger.debug(logging_text + stage[1])
3030
3031 for vca_index, vca in enumerate(get_iterable(nsr_deployed, "VCA")):
3032 config_descriptor = None
3033 if not vca or not vca.get("ee_id"):
3034 continue
3035 if not vca.get("member-vnf-index"):
3036 # ns
3037 config_descriptor = db_nsr.get("ns-configuration")
3038 elif vca.get("vdu_id"):
3039 db_vnfd = db_vnfds_from_member_index[vca["member-vnf-index"]]
3040 config_descriptor = get_configuration(db_vnfd, vca.get("vdu_id"))
3041 elif vca.get("kdu_name"):
3042 db_vnfd = db_vnfds_from_member_index[vca["member-vnf-index"]]
3043 config_descriptor = get_configuration(db_vnfd, vca.get("kdu_name"))
3044 else:
3045 db_vnfd = db_vnfds_from_member_index[vca["member-vnf-index"]]
3046 config_descriptor = get_configuration(db_vnfd, db_vnfd["id"])
3047 vca_type = vca.get("type")
3048 exec_terminate_primitives = (not operation_params.get("skip_terminate_primitives") and
3049 vca.get("needed_terminate"))
3050 # For helm we must destroy_ee. Also for native_charm, as juju_model cannot be deleted if there are
3051 # pending native charms
3052 destroy_ee = True if vca_type in ("helm", "helm-v3", "native_charm") else False
3053 # self.logger.debug(logging_text + "vca_index: {}, ee_id: {}, vca_type: {} destroy_ee: {}".format(
3054 # vca_index, vca.get("ee_id"), vca_type, destroy_ee))
3055 task = asyncio.ensure_future(
3056 self.destroy_N2VC(logging_text, db_nslcmop, vca, config_descriptor, vca_index,
3057 destroy_ee, exec_terminate_primitives))
3058 tasks_dict_info[task] = "Terminating VCA {}".format(vca.get("ee_id"))
3059
3060 # wait for pending tasks of terminate primitives
3061 if tasks_dict_info:
3062 self.logger.debug(logging_text + 'Waiting for tasks {}'.format(list(tasks_dict_info.keys())))
3063 error_list = await self._wait_for_tasks(logging_text, tasks_dict_info,
3064 min(self.timeout_charm_delete, timeout_ns_terminate),
3065 stage, nslcmop_id)
3066 tasks_dict_info.clear()
3067 if error_list:
3068 return # raise LcmException("; ".join(error_list))
3069
3070 # remove All execution environments at once
3071 stage[0] = "Stage 3/3 delete all."
3072
3073 if nsr_deployed.get("VCA"):
3074 stage[1] = "Deleting all execution environments."
3075 self.logger.debug(logging_text + stage[1])
3076 task_delete_ee = asyncio.ensure_future(asyncio.wait_for(self._delete_all_N2VC(db_nsr=db_nsr),
3077 timeout=self.timeout_charm_delete))
3078 # task_delete_ee = asyncio.ensure_future(self.n2vc.delete_namespace(namespace="." + nsr_id))
3079 tasks_dict_info[task_delete_ee] = "Terminating all VCA"
3080
3081 # Delete from k8scluster
3082 stage[1] = "Deleting KDUs."
3083 self.logger.debug(logging_text + stage[1])
3084 # print(nsr_deployed)
3085 for kdu in get_iterable(nsr_deployed, "K8s"):
3086 if not kdu or not kdu.get("kdu-instance"):
3087 continue
3088 kdu_instance = kdu.get("kdu-instance")
3089 if kdu.get("k8scluster-type") in self.k8scluster_map:
3090 task_delete_kdu_instance = asyncio.ensure_future(
3091 self.k8scluster_map[kdu["k8scluster-type"]].uninstall(
3092 cluster_uuid=kdu.get("k8scluster-uuid"),
3093 kdu_instance=kdu_instance))
3094 else:
3095 self.logger.error(logging_text + "Unknown k8s deployment type {}".
3096 format(kdu.get("k8scluster-type")))
3097 continue
3098 tasks_dict_info[task_delete_kdu_instance] = "Terminating KDU '{}'".format(kdu.get("kdu-name"))
3099
3100 # remove from RO
3101 stage[1] = "Deleting ns from VIM."
3102 if self.ng_ro:
3103 task_delete_ro = asyncio.ensure_future(
3104 self._terminate_ng_ro(logging_text, nsr_deployed, nsr_id, nslcmop_id, stage))
3105 else:
3106 task_delete_ro = asyncio.ensure_future(
3107 self._terminate_RO(logging_text, nsr_deployed, nsr_id, nslcmop_id, stage))
3108 tasks_dict_info[task_delete_ro] = "Removing deployment from VIM"
3109
3110 # rest of staff will be done at finally
3111
3112 except (ROclient.ROClientException, DbException, LcmException, N2VCException) as e:
3113 self.logger.error(logging_text + "Exit Exception {}".format(e))
3114 exc = e
3115 except asyncio.CancelledError:
3116 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(stage[1]))
3117 exc = "Operation was cancelled"
3118 except Exception as e:
3119 exc = traceback.format_exc()
3120 self.logger.critical(logging_text + "Exit Exception while '{}': {}".format(stage[1], e), exc_info=True)
3121 finally:
3122 if exc:
3123 error_list.append(str(exc))
3124 try:
3125 # wait for pending tasks
3126 if tasks_dict_info:
3127 stage[1] = "Waiting for terminate pending tasks."
3128 self.logger.debug(logging_text + stage[1])
3129 error_list += await self._wait_for_tasks(logging_text, tasks_dict_info, timeout_ns_terminate,
3130 stage, nslcmop_id)
3131 stage[1] = stage[2] = ""
3132 except asyncio.CancelledError:
3133 error_list.append("Cancelled")
3134 # TODO cancell all tasks
3135 except Exception as exc:
3136 error_list.append(str(exc))
3137 # update status at database
3138 if error_list:
3139 error_detail = "; ".join(error_list)
3140 # self.logger.error(logging_text + error_detail)
3141 error_description_nslcmop = '{} Detail: {}'.format(stage[0], error_detail)
3142 error_description_nsr = 'Operation: TERMINATING.{}, {}.'.format(nslcmop_id, stage[0])
3143
3144 db_nsr_update["operational-status"] = "failed"
3145 db_nsr_update["detailed-status"] = error_description_nsr + " Detail: " + error_detail
3146 db_nslcmop_update["detailed-status"] = error_detail
3147 nslcmop_operation_state = "FAILED"
3148 ns_state = "BROKEN"
3149 else:
3150 error_detail = None
3151 error_description_nsr = error_description_nslcmop = None
3152 ns_state = "NOT_INSTANTIATED"
3153 db_nsr_update["operational-status"] = "terminated"
3154 db_nsr_update["detailed-status"] = "Done"
3155 db_nsr_update["_admin.nsState"] = "NOT_INSTANTIATED"
3156 db_nslcmop_update["detailed-status"] = "Done"
3157 nslcmop_operation_state = "COMPLETED"
3158
3159 if db_nsr:
3160 self._write_ns_status(
3161 nsr_id=nsr_id,
3162 ns_state=ns_state,
3163 current_operation="IDLE",
3164 current_operation_id=None,
3165 error_description=error_description_nsr,
3166 error_detail=error_detail,
3167 other_update=db_nsr_update
3168 )
3169 self._write_op_status(
3170 op_id=nslcmop_id,
3171 stage="",
3172 error_message=error_description_nslcmop,
3173 operation_state=nslcmop_operation_state,
3174 other_update=db_nslcmop_update,
3175 )
3176 if ns_state == "NOT_INSTANTIATED":
3177 try:
3178 self.db.set_list("vnfrs", {"nsr-id-ref": nsr_id}, {"_admin.nsState": "NOT_INSTANTIATED"})
3179 except DbException as e:
3180 self.logger.warn(logging_text + 'Error writing VNFR status for nsr-id-ref: {} -> {}'.
3181 format(nsr_id, e))
3182 if operation_params:
3183 autoremove = operation_params.get("autoremove", False)
3184 if nslcmop_operation_state:
3185 try:
3186 await self.msg.aiowrite("ns", "terminated", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
3187 "operationState": nslcmop_operation_state,
3188 "autoremove": autoremove},
3189 loop=self.loop)
3190 except Exception as e:
3191 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
3192
3193 self.logger.debug(logging_text + "Exit")
3194 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_terminate")
3195
3196 async def _wait_for_tasks(self, logging_text, created_tasks_info, timeout, stage, nslcmop_id, nsr_id=None):
3197 time_start = time()
3198 error_detail_list = []
3199 error_list = []
3200 pending_tasks = list(created_tasks_info.keys())
3201 num_tasks = len(pending_tasks)
3202 num_done = 0
3203 stage[1] = "{}/{}.".format(num_done, num_tasks)
3204 self._write_op_status(nslcmop_id, stage)
3205 while pending_tasks:
3206 new_error = None
3207 _timeout = timeout + time_start - time()
3208 done, pending_tasks = await asyncio.wait(pending_tasks, timeout=_timeout,
3209 return_when=asyncio.FIRST_COMPLETED)
3210 num_done += len(done)
3211 if not done: # Timeout
3212 for task in pending_tasks:
3213 new_error = created_tasks_info[task] + ": Timeout"
3214 error_detail_list.append(new_error)
3215 error_list.append(new_error)
3216 break
3217 for task in done:
3218 if task.cancelled():
3219 exc = "Cancelled"
3220 else:
3221 exc = task.exception()
3222 if exc:
3223 if isinstance(exc, asyncio.TimeoutError):
3224 exc = "Timeout"
3225 new_error = created_tasks_info[task] + ": {}".format(exc)
3226 error_list.append(created_tasks_info[task])
3227 error_detail_list.append(new_error)
3228 if isinstance(exc, (str, DbException, N2VCException, ROclient.ROClientException, LcmException,
3229 K8sException, NgRoException)):
3230 self.logger.error(logging_text + new_error)
3231 else:
3232 exc_traceback = "".join(traceback.format_exception(None, exc, exc.__traceback__))
3233 self.logger.error(logging_text + created_tasks_info[task] + " " + exc_traceback)
3234 else:
3235 self.logger.debug(logging_text + created_tasks_info[task] + ": Done")
3236 stage[1] = "{}/{}.".format(num_done, num_tasks)
3237 if new_error:
3238 stage[1] += " Errors: " + ". ".join(error_detail_list) + "."
3239 if nsr_id: # update also nsr
3240 self.update_db_2("nsrs", nsr_id, {"errorDescription": "Error at: " + ", ".join(error_list),
3241 "errorDetail": ". ".join(error_detail_list)})
3242 self._write_op_status(nslcmop_id, stage)
3243 return error_detail_list
3244
3245 @staticmethod
3246 def _map_primitive_params(primitive_desc, params, instantiation_params):
3247 """
3248 Generates the params to be provided to charm before executing primitive. If user does not provide a parameter,
3249 The default-value is used. If it is between < > it look for a value at instantiation_params
3250 :param primitive_desc: portion of VNFD/NSD that describes primitive
3251 :param params: Params provided by user
3252 :param instantiation_params: Instantiation params provided by user
3253 :return: a dictionary with the calculated params
3254 """
3255 calculated_params = {}
3256 for parameter in primitive_desc.get("parameter", ()):
3257 param_name = parameter["name"]
3258 if param_name in params:
3259 calculated_params[param_name] = params[param_name]
3260 elif "default-value" in parameter or "value" in parameter:
3261 if "value" in parameter:
3262 calculated_params[param_name] = parameter["value"]
3263 else:
3264 calculated_params[param_name] = parameter["default-value"]
3265 if isinstance(calculated_params[param_name], str) and calculated_params[param_name].startswith("<") \
3266 and calculated_params[param_name].endswith(">"):
3267 if calculated_params[param_name][1:-1] in instantiation_params:
3268 calculated_params[param_name] = instantiation_params[calculated_params[param_name][1:-1]]
3269 else:
3270 raise LcmException("Parameter {} needed to execute primitive {} not provided".
3271 format(calculated_params[param_name], primitive_desc["name"]))
3272 else:
3273 raise LcmException("Parameter {} needed to execute primitive {} not provided".
3274 format(param_name, primitive_desc["name"]))
3275
3276 if isinstance(calculated_params[param_name], (dict, list, tuple)):
3277 calculated_params[param_name] = yaml.safe_dump(calculated_params[param_name],
3278 default_flow_style=True, width=256)
3279 elif isinstance(calculated_params[param_name], str) and calculated_params[param_name].startswith("!!yaml "):
3280 calculated_params[param_name] = calculated_params[param_name][7:]
3281 if parameter.get("data-type") == "INTEGER":
3282 try:
3283 calculated_params[param_name] = int(calculated_params[param_name])
3284 except ValueError: # error converting string to int
3285 raise LcmException(
3286 "Parameter {} of primitive {} must be integer".format(param_name, primitive_desc["name"]))
3287 elif parameter.get("data-type") == "BOOLEAN":
3288 calculated_params[param_name] = not ((str(calculated_params[param_name])).lower() == 'false')
3289
3290 # add always ns_config_info if primitive name is config
3291 if primitive_desc["name"] == "config":
3292 if "ns_config_info" in instantiation_params:
3293 calculated_params["ns_config_info"] = instantiation_params["ns_config_info"]
3294 return calculated_params
3295
3296 def _look_for_deployed_vca(self, deployed_vca, member_vnf_index, vdu_id, vdu_count_index, kdu_name=None,
3297 ee_descriptor_id=None):
3298 # find vca_deployed record for this action. Raise LcmException if not found or there is not any id.
3299 for vca in deployed_vca:
3300 if not vca:
3301 continue
3302 if member_vnf_index != vca["member-vnf-index"] or vdu_id != vca["vdu_id"]:
3303 continue
3304 if vdu_count_index is not None and vdu_count_index != vca["vdu_count_index"]:
3305 continue
3306 if kdu_name and kdu_name != vca["kdu_name"]:
3307 continue
3308 if ee_descriptor_id and ee_descriptor_id != vca["ee_descriptor_id"]:
3309 continue
3310 break
3311 else:
3312 # vca_deployed not found
3313 raise LcmException("charm for member_vnf_index={} vdu_id={}.{} kdu_name={} execution-environment-list.id={}"
3314 " is not deployed".format(member_vnf_index, vdu_id, vdu_count_index, kdu_name,
3315 ee_descriptor_id))
3316 # get ee_id
3317 ee_id = vca.get("ee_id")
3318 vca_type = vca.get("type", "lxc_proxy_charm") # default value for backward compatibility - proxy charm
3319 if not ee_id:
3320 raise LcmException("charm for member_vnf_index={} vdu_id={} kdu_name={} vdu_count_index={} has not "
3321 "execution environment"
3322 .format(member_vnf_index, vdu_id, kdu_name, vdu_count_index))
3323 return ee_id, vca_type
3324
3325 async def _ns_execute_primitive(self, ee_id, primitive, primitive_params, retries=0, retries_interval=30,
3326 timeout=None, vca_type=None, db_dict=None) -> (str, str):
3327 try:
3328 if primitive == "config":
3329 primitive_params = {"params": primitive_params}
3330
3331 vca_type = vca_type or "lxc_proxy_charm"
3332
3333 while retries >= 0:
3334 try:
3335 output = await asyncio.wait_for(
3336 self.vca_map[vca_type].exec_primitive(
3337 ee_id=ee_id,
3338 primitive_name=primitive,
3339 params_dict=primitive_params,
3340 progress_timeout=self.timeout_progress_primitive,
3341 total_timeout=self.timeout_primitive,
3342 db_dict=db_dict),
3343 timeout=timeout or self.timeout_primitive)
3344 # execution was OK
3345 break
3346 except asyncio.CancelledError:
3347 raise
3348 except Exception as e: # asyncio.TimeoutError
3349 if isinstance(e, asyncio.TimeoutError):
3350 e = "Timeout"
3351 retries -= 1
3352 if retries >= 0:
3353 self.logger.debug('Error executing action {} on {} -> {}'.format(primitive, ee_id, e))
3354 # wait and retry
3355 await asyncio.sleep(retries_interval, loop=self.loop)
3356 else:
3357 return 'FAILED', str(e)
3358
3359 return 'COMPLETED', output
3360
3361 except (LcmException, asyncio.CancelledError):
3362 raise
3363 except Exception as e:
3364 return 'FAIL', 'Error executing action {}: {}'.format(primitive, e)
3365
3366 async def action(self, nsr_id, nslcmop_id):
3367 # Try to lock HA task here
3368 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
3369 if not task_is_locked_by_me:
3370 return
3371
3372 logging_text = "Task ns={} action={} ".format(nsr_id, nslcmop_id)
3373 self.logger.debug(logging_text + "Enter")
3374 # get all needed from database
3375 db_nsr = None
3376 db_nslcmop = None
3377 db_nsr_update = {}
3378 db_nslcmop_update = {}
3379 nslcmop_operation_state = None
3380 error_description_nslcmop = None
3381 exc = None
3382 try:
3383 # wait for any previous tasks in process
3384 step = "Waiting for previous operations to terminate"
3385 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
3386
3387 self._write_ns_status(
3388 nsr_id=nsr_id,
3389 ns_state=None,
3390 current_operation="RUNNING ACTION",
3391 current_operation_id=nslcmop_id
3392 )
3393
3394 step = "Getting information from database"
3395 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
3396 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
3397
3398 nsr_deployed = db_nsr["_admin"].get("deployed")
3399 vnf_index = db_nslcmop["operationParams"].get("member_vnf_index")
3400 vdu_id = db_nslcmop["operationParams"].get("vdu_id")
3401 kdu_name = db_nslcmop["operationParams"].get("kdu_name")
3402 vdu_count_index = db_nslcmop["operationParams"].get("vdu_count_index")
3403 primitive = db_nslcmop["operationParams"]["primitive"]
3404 primitive_params = db_nslcmop["operationParams"]["primitive_params"]
3405 timeout_ns_action = db_nslcmop["operationParams"].get("timeout_ns_action", self.timeout_primitive)
3406
3407 if vnf_index:
3408 step = "Getting vnfr from database"
3409 db_vnfr = self.db.get_one("vnfrs", {"member-vnf-index-ref": vnf_index, "nsr-id-ref": nsr_id})
3410 step = "Getting vnfd from database"
3411 db_vnfd = self.db.get_one("vnfds", {"_id": db_vnfr["vnfd-id"]})
3412 else:
3413 step = "Getting nsd from database"
3414 db_nsd = self.db.get_one("nsds", {"_id": db_nsr["nsd-id"]})
3415
3416 # for backward compatibility
3417 if nsr_deployed and isinstance(nsr_deployed.get("VCA"), dict):
3418 nsr_deployed["VCA"] = list(nsr_deployed["VCA"].values())
3419 db_nsr_update["_admin.deployed.VCA"] = nsr_deployed["VCA"]
3420 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3421
3422 # look for primitive
3423 config_primitive_desc = descriptor_configuration = None
3424 if vdu_id:
3425 descriptor_configuration = get_configuration(db_vnfd, vdu_id)
3426 elif kdu_name:
3427 descriptor_configuration = get_configuration(db_vnfd, kdu_name)
3428 elif vnf_index:
3429 descriptor_configuration = get_configuration(db_vnfd, db_vnfd["id"])
3430 else:
3431 descriptor_configuration = db_nsd.get("ns-configuration")
3432
3433 if descriptor_configuration and descriptor_configuration.get("config-primitive"):
3434 for config_primitive in descriptor_configuration["config-primitive"]:
3435 if config_primitive["name"] == primitive:
3436 config_primitive_desc = config_primitive
3437 break
3438
3439 if not config_primitive_desc:
3440 if not (kdu_name and primitive in ("upgrade", "rollback", "status")):
3441 raise LcmException("Primitive {} not found at [ns|vnf|vdu]-configuration:config-primitive ".
3442 format(primitive))
3443 primitive_name = primitive
3444 ee_descriptor_id = None
3445 else:
3446 primitive_name = config_primitive_desc.get("execution-environment-primitive", primitive)
3447 ee_descriptor_id = config_primitive_desc.get("execution-environment-ref")
3448
3449 if vnf_index:
3450 if vdu_id:
3451 vdur = next((x for x in db_vnfr["vdur"] if x["vdu-id-ref"] == vdu_id), None)
3452 desc_params = parse_yaml_strings(vdur.get("additionalParams"))
3453 elif kdu_name:
3454 kdur = next((x for x in db_vnfr["kdur"] if x["kdu-name"] == kdu_name), None)
3455 desc_params = parse_yaml_strings(kdur.get("additionalParams"))
3456 else:
3457 desc_params = parse_yaml_strings(db_vnfr.get("additionalParamsForVnf"))
3458 else:
3459 desc_params = parse_yaml_strings(db_nsr.get("additionalParamsForNs"))
3460 if kdu_name and get_configuration(db_vnfd, kdu_name):
3461 kdu_configuration = get_configuration(db_vnfd, kdu_name)
3462 actions = set()
3463 for primitive in kdu_configuration.get("initial-config-primitive", []):
3464 actions.add(primitive["name"])
3465 for primitive in kdu_configuration.get("config-primitive", []):
3466 actions.add(primitive["name"])
3467 kdu_action = True if primitive_name in actions else False
3468
3469 # TODO check if ns is in a proper status
3470 if kdu_name and (primitive_name in ("upgrade", "rollback", "status") or kdu_action):
3471 # kdur and desc_params already set from before
3472 if primitive_params:
3473 desc_params.update(primitive_params)
3474 # TODO Check if we will need something at vnf level
3475 for index, kdu in enumerate(get_iterable(nsr_deployed, "K8s")):
3476 if kdu_name == kdu["kdu-name"] and kdu["member-vnf-index"] == vnf_index:
3477 break
3478 else:
3479 raise LcmException("KDU '{}' for vnf '{}' not deployed".format(kdu_name, vnf_index))
3480
3481 if kdu.get("k8scluster-type") not in self.k8scluster_map:
3482 msg = "unknown k8scluster-type '{}'".format(kdu.get("k8scluster-type"))
3483 raise LcmException(msg)
3484
3485 db_dict = {"collection": "nsrs",
3486 "filter": {"_id": nsr_id},
3487 "path": "_admin.deployed.K8s.{}".format(index)}
3488 self.logger.debug(logging_text + "Exec k8s {} on {}.{}".format(primitive_name, vnf_index, kdu_name))
3489 step = "Executing kdu {}".format(primitive_name)
3490 if primitive_name == "upgrade":
3491 if desc_params.get("kdu_model"):
3492 kdu_model = desc_params.get("kdu_model")
3493 del desc_params["kdu_model"]
3494 else:
3495 kdu_model = kdu.get("kdu-model")
3496 parts = kdu_model.split(sep=":")
3497 if len(parts) == 2:
3498 kdu_model = parts[0]
3499
3500 detailed_status = await asyncio.wait_for(
3501 self.k8scluster_map[kdu["k8scluster-type"]].upgrade(
3502 cluster_uuid=kdu.get("k8scluster-uuid"),
3503 kdu_instance=kdu.get("kdu-instance"),
3504 atomic=True, kdu_model=kdu_model,
3505 params=desc_params, db_dict=db_dict,
3506 timeout=timeout_ns_action),
3507 timeout=timeout_ns_action + 10)
3508 self.logger.debug(logging_text + " Upgrade of kdu {} done".format(detailed_status))
3509 elif primitive_name == "rollback":
3510 detailed_status = await asyncio.wait_for(
3511 self.k8scluster_map[kdu["k8scluster-type"]].rollback(
3512 cluster_uuid=kdu.get("k8scluster-uuid"),
3513 kdu_instance=kdu.get("kdu-instance"),
3514 db_dict=db_dict),
3515 timeout=timeout_ns_action)
3516 elif primitive_name == "status":
3517 detailed_status = await asyncio.wait_for(
3518 self.k8scluster_map[kdu["k8scluster-type"]].status_kdu(
3519 cluster_uuid=kdu.get("k8scluster-uuid"),
3520 kdu_instance=kdu.get("kdu-instance")),
3521 timeout=timeout_ns_action)
3522 else:
3523 kdu_instance = kdu.get("kdu-instance") or "{}-{}".format(kdu["kdu-name"], nsr_id)
3524 params = self._map_primitive_params(config_primitive_desc, primitive_params, desc_params)
3525
3526 detailed_status = await asyncio.wait_for(
3527 self.k8scluster_map[kdu["k8scluster-type"]].exec_primitive(
3528 cluster_uuid=kdu.get("k8scluster-uuid"),
3529 kdu_instance=kdu_instance,
3530 primitive_name=primitive_name,
3531 params=params, db_dict=db_dict,
3532 timeout=timeout_ns_action),
3533 timeout=timeout_ns_action)
3534
3535 if detailed_status:
3536 nslcmop_operation_state = 'COMPLETED'
3537 else:
3538 detailed_status = ''
3539 nslcmop_operation_state = 'FAILED'
3540 else:
3541 ee_id, vca_type = self._look_for_deployed_vca(nsr_deployed["VCA"], member_vnf_index=vnf_index,
3542 vdu_id=vdu_id, vdu_count_index=vdu_count_index,
3543 ee_descriptor_id=ee_descriptor_id)
3544 db_nslcmop_notif = {"collection": "nslcmops",
3545 "filter": {"_id": nslcmop_id},
3546 "path": "admin.VCA"}
3547 nslcmop_operation_state, detailed_status = await self._ns_execute_primitive(
3548 ee_id,
3549 primitive=primitive_name,
3550 primitive_params=self._map_primitive_params(config_primitive_desc, primitive_params, desc_params),
3551 timeout=timeout_ns_action,
3552 vca_type=vca_type,
3553 db_dict=db_nslcmop_notif)
3554
3555 db_nslcmop_update["detailed-status"] = detailed_status
3556 error_description_nslcmop = detailed_status if nslcmop_operation_state == "FAILED" else ""
3557 self.logger.debug(logging_text + " task Done with result {} {}".format(nslcmop_operation_state,
3558 detailed_status))
3559 return # database update is called inside finally
3560
3561 except (DbException, LcmException, N2VCException, K8sException) as e:
3562 self.logger.error(logging_text + "Exit Exception {}".format(e))
3563 exc = e
3564 except asyncio.CancelledError:
3565 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(step))
3566 exc = "Operation was cancelled"
3567 except asyncio.TimeoutError:
3568 self.logger.error(logging_text + "Timeout while '{}'".format(step))
3569 exc = "Timeout"
3570 except Exception as e:
3571 exc = traceback.format_exc()
3572 self.logger.critical(logging_text + "Exit Exception {} {}".format(type(e).__name__, e), exc_info=True)
3573 finally:
3574 if exc:
3575 db_nslcmop_update["detailed-status"] = detailed_status = error_description_nslcmop = \
3576 "FAILED {}: {}".format(step, exc)
3577 nslcmop_operation_state = "FAILED"
3578 if db_nsr:
3579 self._write_ns_status(
3580 nsr_id=nsr_id,
3581 ns_state=db_nsr["nsState"], # TODO check if degraded. For the moment use previous status
3582 current_operation="IDLE",
3583 current_operation_id=None,
3584 # error_description=error_description_nsr,
3585 # error_detail=error_detail,
3586 other_update=db_nsr_update
3587 )
3588
3589 self._write_op_status(op_id=nslcmop_id, stage="", error_message=error_description_nslcmop,
3590 operation_state=nslcmop_operation_state, other_update=db_nslcmop_update)
3591
3592 if nslcmop_operation_state:
3593 try:
3594 await self.msg.aiowrite("ns", "actioned", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
3595 "operationState": nslcmop_operation_state},
3596 loop=self.loop)
3597 except Exception as e:
3598 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
3599 self.logger.debug(logging_text + "Exit")
3600 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_action")
3601 return nslcmop_operation_state, detailed_status
3602
3603 async def scale(self, nsr_id, nslcmop_id):
3604 # Try to lock HA task here
3605 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
3606 if not task_is_locked_by_me:
3607 return
3608
3609 logging_text = "Task ns={} scale={} ".format(nsr_id, nslcmop_id)
3610 stage = ['', '', '']
3611 # ^ stage, step, VIM progress
3612 self.logger.debug(logging_text + "Enter")
3613 # get all needed from database
3614 db_nsr = None
3615 db_nslcmop_update = {}
3616 db_nsr_update = {}
3617 exc = None
3618 # in case of error, indicates what part of scale was failed to put nsr at error status
3619 scale_process = None
3620 old_operational_status = ""
3621 old_config_status = ""
3622 try:
3623 # wait for any previous tasks in process
3624 step = "Waiting for previous operations to terminate"
3625 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
3626 self._write_ns_status(nsr_id=nsr_id, ns_state=None,
3627 current_operation="SCALING", current_operation_id=nslcmop_id)
3628
3629 step = "Getting nslcmop from database"
3630 self.logger.debug(step + " after having waited for previous tasks to be completed")
3631 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
3632
3633 step = "Getting nsr from database"
3634 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
3635 old_operational_status = db_nsr["operational-status"]
3636 old_config_status = db_nsr["config-status"]
3637
3638 step = "Parsing scaling parameters"
3639 db_nsr_update["operational-status"] = "scaling"
3640 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3641 nsr_deployed = db_nsr["_admin"].get("deployed")
3642
3643 #######
3644 nsr_deployed = db_nsr["_admin"].get("deployed")
3645 vnf_index = db_nslcmop["operationParams"].get("member_vnf_index")
3646 # vdu_id = db_nslcmop["operationParams"].get("vdu_id")
3647 # vdu_count_index = db_nslcmop["operationParams"].get("vdu_count_index")
3648 # vdu_name = db_nslcmop["operationParams"].get("vdu_name")
3649 #######
3650
3651 vnf_index = db_nslcmop["operationParams"]["scaleVnfData"]["scaleByStepData"]["member-vnf-index"]
3652 scaling_group = db_nslcmop["operationParams"]["scaleVnfData"]["scaleByStepData"]["scaling-group-descriptor"]
3653 scaling_type = db_nslcmop["operationParams"]["scaleVnfData"]["scaleVnfType"]
3654 # for backward compatibility
3655 if nsr_deployed and isinstance(nsr_deployed.get("VCA"), dict):
3656 nsr_deployed["VCA"] = list(nsr_deployed["VCA"].values())
3657 db_nsr_update["_admin.deployed.VCA"] = nsr_deployed["VCA"]
3658 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3659
3660 step = "Getting vnfr from database"
3661 db_vnfr = self.db.get_one("vnfrs", {"member-vnf-index-ref": vnf_index, "nsr-id-ref": nsr_id})
3662
3663 step = "Getting vnfd from database"
3664 db_vnfd = self.db.get_one("vnfds", {"_id": db_vnfr["vnfd-id"]})
3665
3666 step = "Getting scaling-group-descriptor"
3667 scaling_descriptor = find_in_list(
3668 get_scaling_aspect(
3669 db_vnfd
3670 ),
3671 lambda scale_desc: scale_desc["name"] == scaling_group
3672 )
3673 if not scaling_descriptor:
3674 raise LcmException("input parameter 'scaleByStepData':'scaling-group-descriptor':'{}' is not present "
3675 "at vnfd:scaling-group-descriptor".format(scaling_group))
3676
3677 step = "Sending scale order to VIM"
3678 # TODO check if ns is in a proper status
3679 nb_scale_op = 0
3680 if not db_nsr["_admin"].get("scaling-group"):
3681 self.update_db_2("nsrs", nsr_id, {"_admin.scaling-group": [{"name": scaling_group, "nb-scale-op": 0}]})
3682 admin_scale_index = 0
3683 else:
3684 for admin_scale_index, admin_scale_info in enumerate(db_nsr["_admin"]["scaling-group"]):
3685 if admin_scale_info["name"] == scaling_group:
3686 nb_scale_op = admin_scale_info.get("nb-scale-op", 0)
3687 break
3688 else: # not found, set index one plus last element and add new entry with the name
3689 admin_scale_index += 1
3690 db_nsr_update["_admin.scaling-group.{}.name".format(admin_scale_index)] = scaling_group
3691 RO_scaling_info = []
3692 vdu_scaling_info = {"scaling_group_name": scaling_group, "vdu": []}
3693 if scaling_type == "SCALE_OUT":
3694 if "aspect-delta-details" not in scaling_descriptor:
3695 raise LcmException(
3696 "Aspect delta details not fount in scaling descriptor {}".format(
3697 scaling_descriptor["name"]
3698 )
3699 )
3700 # count if max-instance-count is reached
3701 deltas = scaling_descriptor.get("aspect-delta-details")["deltas"]
3702
3703 vdu_scaling_info["scaling_direction"] = "OUT"
3704 vdu_scaling_info["vdu-create"] = {}
3705 for delta in deltas:
3706 for vdu_delta in delta["vdu-delta"]:
3707 vdud = get_vdu(db_vnfd, vdu_delta["id"])
3708 vdu_index = get_vdu_index(db_vnfr, vdu_delta["id"])
3709 cloud_init_text = self._get_vdu_cloud_init_content(vdud, db_vnfd)
3710 if cloud_init_text:
3711 additional_params = self._get_vdu_additional_params(db_vnfr, vdud["id"]) or {}
3712 cloud_init_list = []
3713
3714 vdu_profile = get_vdu_profile(db_vnfd, vdu_delta["id"])
3715 max_instance_count = 10
3716 if vdu_profile and "max-number-of-instances" in vdu_profile:
3717 max_instance_count = vdu_profile.get("max-number-of-instances", 10)
3718
3719 deafult_instance_num = get_number_of_instances(db_vnfd, vdud["id"])
3720
3721 nb_scale_op += vdu_delta.get("number-of-instances", 1)
3722
3723 if nb_scale_op + deafult_instance_num > max_instance_count:
3724 raise LcmException(
3725 "reached the limit of {} (max-instance-count) "
3726 "scaling-out operations for the "
3727 "scaling-group-descriptor '{}'".format(nb_scale_op, scaling_group)
3728 )
3729 for x in range(vdu_delta.get("number-of-instances", 1)):
3730 if cloud_init_text:
3731 # TODO Information of its own ip is not available because db_vnfr is not updated.
3732 additional_params["OSM"] = get_osm_params(
3733 db_vnfr,
3734 vdu_delta["id"],
3735 vdu_index + x
3736 )
3737 cloud_init_list.append(
3738 self._parse_cloud_init(
3739 cloud_init_text,
3740 additional_params,
3741 db_vnfd["id"],
3742 vdud["id"]
3743 )
3744 )
3745 RO_scaling_info.append(
3746 {
3747 "osm_vdu_id": vdu_delta["id"],
3748 "member-vnf-index": vnf_index,
3749 "type": "create",
3750 "count": vdu_delta.get("number-of-instances", 1)
3751 }
3752 )
3753 if cloud_init_list:
3754 RO_scaling_info[-1]["cloud_init"] = cloud_init_list
3755 vdu_scaling_info["vdu-create"][vdu_delta["id"]] = vdu_delta.get("number-of-instances", 1)
3756
3757 elif scaling_type == "SCALE_IN":
3758 if "min-instance-count" in scaling_descriptor and scaling_descriptor["min-instance-count"] is not None:
3759 min_instance_count = int(scaling_descriptor["min-instance-count"])
3760
3761 vdu_scaling_info["scaling_direction"] = "IN"
3762 vdu_scaling_info["vdu-delete"] = {}
3763 deltas = scaling_descriptor.get("aspect-delta-details")["deltas"]
3764 for delta in deltas:
3765 for vdu_delta in delta["vdu-delta"]:
3766 min_instance_count = 0
3767 vdu_profile = get_vdu_profile(db_vnfd, vdu_delta["id"])
3768 if vdu_profile and "min-number-of-instances" in vdu_profile:
3769 min_instance_count = vdu_profile["min-number-of-instances"]
3770
3771 deafult_instance_num = get_number_of_instances(db_vnfd, vdu_delta["id"])
3772
3773 nb_scale_op -= vdu_delta.get("number-of-instances", 1)
3774 if nb_scale_op + deafult_instance_num < min_instance_count:
3775 raise LcmException(
3776 "reached the limit of {} (min-instance-count) scaling-in operations for the "
3777 "scaling-group-descriptor '{}'".format(nb_scale_op, scaling_group)
3778 )
3779 RO_scaling_info.append({"osm_vdu_id": vdu_delta["id"], "member-vnf-index": vnf_index,
3780 "type": "delete", "count": vdu_delta.get("number-of-instances", 1)})
3781 vdu_scaling_info["vdu-delete"][vdu_delta["id"]] = vdu_delta.get("number-of-instances", 1)
3782
3783 # update VDU_SCALING_INFO with the VDUs to delete ip_addresses
3784 vdu_delete = copy(vdu_scaling_info.get("vdu-delete"))
3785 if vdu_scaling_info["scaling_direction"] == "IN":
3786 for vdur in reversed(db_vnfr["vdur"]):
3787 if vdu_delete.get(vdur["vdu-id-ref"]):
3788 vdu_delete[vdur["vdu-id-ref"]] -= 1
3789 vdu_scaling_info["vdu"].append({
3790 "name": vdur.get("name") or vdur.get("vdu-name"),
3791 "vdu_id": vdur["vdu-id-ref"],
3792 "interface": []
3793 })
3794 for interface in vdur["interfaces"]:
3795 vdu_scaling_info["vdu"][-1]["interface"].append({
3796 "name": interface["name"],
3797 "ip_address": interface["ip-address"],
3798 "mac_address": interface.get("mac-address"),
3799 })
3800 # vdu_delete = vdu_scaling_info.pop("vdu-delete")
3801
3802 # PRE-SCALE BEGIN
3803 step = "Executing pre-scale vnf-config-primitive"
3804 if scaling_descriptor.get("scaling-config-action"):
3805 for scaling_config_action in scaling_descriptor["scaling-config-action"]:
3806 if (scaling_config_action.get("trigger") == "pre-scale-in" and scaling_type == "SCALE_IN") \
3807 or (scaling_config_action.get("trigger") == "pre-scale-out" and scaling_type == "SCALE_OUT"):
3808 vnf_config_primitive = scaling_config_action["vnf-config-primitive-name-ref"]
3809 step = db_nslcmop_update["detailed-status"] = \
3810 "executing pre-scale scaling-config-action '{}'".format(vnf_config_primitive)
3811
3812 # look for primitive
3813 for config_primitive in (get_configuration(
3814 db_vnfd, db_vnfd["id"]
3815 ) or {}).get("config-primitive", ()):
3816 if config_primitive["name"] == vnf_config_primitive:
3817 break
3818 else:
3819 raise LcmException(
3820 "Invalid vnfd descriptor at scaling-group-descriptor[name='{}']:scaling-config-action"
3821 "[vnf-config-primitive-name-ref='{}'] does not match any vnf-configuration:config-"
3822 "primitive".format(scaling_group, vnf_config_primitive))
3823
3824 vnfr_params = {"VDU_SCALE_INFO": vdu_scaling_info}
3825 if db_vnfr.get("additionalParamsForVnf"):
3826 vnfr_params.update(db_vnfr["additionalParamsForVnf"])
3827
3828 scale_process = "VCA"
3829 db_nsr_update["config-status"] = "configuring pre-scaling"
3830 primitive_params = self._map_primitive_params(config_primitive, {}, vnfr_params)
3831
3832 # Pre-scale retry check: Check if this sub-operation has been executed before
3833 op_index = self._check_or_add_scale_suboperation(
3834 db_nslcmop, nslcmop_id, vnf_index, vnf_config_primitive, primitive_params, 'PRE-SCALE')
3835 if op_index == self.SUBOPERATION_STATUS_SKIP:
3836 # Skip sub-operation
3837 result = 'COMPLETED'
3838 result_detail = 'Done'
3839 self.logger.debug(logging_text +
3840 "vnf_config_primitive={} Skipped sub-operation, result {} {}".format(
3841 vnf_config_primitive, result, result_detail))
3842 else:
3843 if op_index == self.SUBOPERATION_STATUS_NEW:
3844 # New sub-operation: Get index of this sub-operation
3845 op_index = len(db_nslcmop.get('_admin', {}).get('operations')) - 1
3846 self.logger.debug(logging_text + "vnf_config_primitive={} New sub-operation".
3847 format(vnf_config_primitive))
3848 else:
3849 # retry: Get registered params for this existing sub-operation
3850 op = db_nslcmop.get('_admin', {}).get('operations', [])[op_index]
3851 vnf_index = op.get('member_vnf_index')
3852 vnf_config_primitive = op.get('primitive')
3853 primitive_params = op.get('primitive_params')
3854 self.logger.debug(logging_text + "vnf_config_primitive={} Sub-operation retry".
3855 format(vnf_config_primitive))
3856 # Execute the primitive, either with new (first-time) or registered (reintent) args
3857 ee_descriptor_id = config_primitive.get("execution-environment-ref")
3858 primitive_name = config_primitive.get("execution-environment-primitive",
3859 vnf_config_primitive)
3860 ee_id, vca_type = self._look_for_deployed_vca(nsr_deployed["VCA"],
3861 member_vnf_index=vnf_index,
3862 vdu_id=None,
3863 vdu_count_index=None,
3864 ee_descriptor_id=ee_descriptor_id)
3865 result, result_detail = await self._ns_execute_primitive(
3866 ee_id, primitive_name, primitive_params, vca_type)
3867 self.logger.debug(logging_text + "vnf_config_primitive={} Done with result {} {}".format(
3868 vnf_config_primitive, result, result_detail))
3869 # Update operationState = COMPLETED | FAILED
3870 self._update_suboperation_status(
3871 db_nslcmop, op_index, result, result_detail)
3872
3873 if result == "FAILED":
3874 raise LcmException(result_detail)
3875 db_nsr_update["config-status"] = old_config_status
3876 scale_process = None
3877 # PRE-SCALE END
3878
3879 db_nsr_update["_admin.scaling-group.{}.nb-scale-op".format(admin_scale_index)] = nb_scale_op
3880 db_nsr_update["_admin.scaling-group.{}.time".format(admin_scale_index)] = time()
3881
3882 # SCALE RO - BEGIN
3883 if RO_scaling_info:
3884 scale_process = "RO"
3885 if self.ro_config.get("ng"):
3886 await self._scale_ng_ro(logging_text, db_nsr, db_nslcmop, db_vnfr, vdu_scaling_info, stage)
3887 vdu_scaling_info.pop("vdu-create", None)
3888 vdu_scaling_info.pop("vdu-delete", None)
3889
3890 scale_process = None
3891 if db_nsr_update:
3892 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3893
3894 # POST-SCALE BEGIN
3895 # execute primitive service POST-SCALING
3896 step = "Executing post-scale vnf-config-primitive"
3897 if scaling_descriptor.get("scaling-config-action"):
3898 for scaling_config_action in scaling_descriptor["scaling-config-action"]:
3899 if (scaling_config_action.get("trigger") == "post-scale-in" and scaling_type == "SCALE_IN") \
3900 or (scaling_config_action.get("trigger") == "post-scale-out" and scaling_type == "SCALE_OUT"):
3901 vnf_config_primitive = scaling_config_action["vnf-config-primitive-name-ref"]
3902 step = db_nslcmop_update["detailed-status"] = \
3903 "executing post-scale scaling-config-action '{}'".format(vnf_config_primitive)
3904
3905 vnfr_params = {"VDU_SCALE_INFO": vdu_scaling_info}
3906 if db_vnfr.get("additionalParamsForVnf"):
3907 vnfr_params.update(db_vnfr["additionalParamsForVnf"])
3908
3909 # look for primitive
3910 for config_primitive in (
3911 get_configuration(db_vnfd, db_vnfd["id"]) or {}
3912 ).get("config-primitive", ()):
3913 if config_primitive["name"] == vnf_config_primitive:
3914 break
3915 else:
3916 raise LcmException(
3917 "Invalid vnfd descriptor at scaling-group-descriptor[name='{}']:scaling-config-"
3918 "action[vnf-config-primitive-name-ref='{}'] does not match any vnf-configuration:"
3919 "config-primitive".format(scaling_group, vnf_config_primitive))
3920 scale_process = "VCA"
3921 db_nsr_update["config-status"] = "configuring post-scaling"
3922 primitive_params = self._map_primitive_params(config_primitive, {}, vnfr_params)
3923
3924 # Post-scale retry check: Check if this sub-operation has been executed before
3925 op_index = self._check_or_add_scale_suboperation(
3926 db_nslcmop, nslcmop_id, vnf_index, vnf_config_primitive, primitive_params, 'POST-SCALE')
3927 if op_index == self.SUBOPERATION_STATUS_SKIP:
3928 # Skip sub-operation
3929 result = 'COMPLETED'
3930 result_detail = 'Done'
3931 self.logger.debug(logging_text +
3932 "vnf_config_primitive={} Skipped sub-operation, result {} {}".
3933 format(vnf_config_primitive, result, result_detail))
3934 else:
3935 if op_index == self.SUBOPERATION_STATUS_NEW:
3936 # New sub-operation: Get index of this sub-operation
3937 op_index = len(db_nslcmop.get('_admin', {}).get('operations')) - 1
3938 self.logger.debug(logging_text + "vnf_config_primitive={} New sub-operation".
3939 format(vnf_config_primitive))
3940 else:
3941 # retry: Get registered params for this existing sub-operation
3942 op = db_nslcmop.get('_admin', {}).get('operations', [])[op_index]
3943 vnf_index = op.get('member_vnf_index')
3944 vnf_config_primitive = op.get('primitive')
3945 primitive_params = op.get('primitive_params')
3946 self.logger.debug(logging_text + "vnf_config_primitive={} Sub-operation retry".
3947 format(vnf_config_primitive))
3948 # Execute the primitive, either with new (first-time) or registered (reintent) args
3949 ee_descriptor_id = config_primitive.get("execution-environment-ref")
3950 primitive_name = config_primitive.get("execution-environment-primitive",
3951 vnf_config_primitive)
3952 ee_id, vca_type = self._look_for_deployed_vca(nsr_deployed["VCA"],
3953 member_vnf_index=vnf_index,
3954 vdu_id=None,
3955 vdu_count_index=None,
3956 ee_descriptor_id=ee_descriptor_id)
3957 result, result_detail = await self._ns_execute_primitive(
3958 ee_id, primitive_name, primitive_params, vca_type)
3959 self.logger.debug(logging_text + "vnf_config_primitive={} Done with result {} {}".format(
3960 vnf_config_primitive, result, result_detail))
3961 # Update operationState = COMPLETED | FAILED
3962 self._update_suboperation_status(
3963 db_nslcmop, op_index, result, result_detail)
3964
3965 if result == "FAILED":
3966 raise LcmException(result_detail)
3967 db_nsr_update["config-status"] = old_config_status
3968 scale_process = None
3969 # POST-SCALE END
3970
3971 db_nsr_update["detailed-status"] = "" # "scaled {} {}".format(scaling_group, scaling_type)
3972 db_nsr_update["operational-status"] = "running" if old_operational_status == "failed" \
3973 else old_operational_status
3974 db_nsr_update["config-status"] = old_config_status
3975 return
3976 except (ROclient.ROClientException, DbException, LcmException, NgRoException) as e:
3977 self.logger.error(logging_text + "Exit Exception {}".format(e))
3978 exc = e
3979 except asyncio.CancelledError:
3980 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(step))
3981 exc = "Operation was cancelled"
3982 except Exception as e:
3983 exc = traceback.format_exc()
3984 self.logger.critical(logging_text + "Exit Exception {} {}".format(type(e).__name__, e), exc_info=True)
3985 finally:
3986 self._write_ns_status(nsr_id=nsr_id, ns_state=None, current_operation="IDLE", current_operation_id=None)
3987 if exc:
3988 db_nslcmop_update["detailed-status"] = error_description_nslcmop = "FAILED {}: {}".format(step, exc)
3989 nslcmop_operation_state = "FAILED"
3990 if db_nsr:
3991 db_nsr_update["operational-status"] = old_operational_status
3992 db_nsr_update["config-status"] = old_config_status
3993 db_nsr_update["detailed-status"] = ""
3994 if scale_process:
3995 if "VCA" in scale_process:
3996 db_nsr_update["config-status"] = "failed"
3997 if "RO" in scale_process:
3998 db_nsr_update["operational-status"] = "failed"
3999 db_nsr_update["detailed-status"] = "FAILED scaling nslcmop={} {}: {}".format(nslcmop_id, step,
4000 exc)
4001 else:
4002 error_description_nslcmop = None
4003 nslcmop_operation_state = "COMPLETED"
4004 db_nslcmop_update["detailed-status"] = "Done"
4005
4006 self._write_op_status(op_id=nslcmop_id, stage="", error_message=error_description_nslcmop,
4007 operation_state=nslcmop_operation_state, other_update=db_nslcmop_update)
4008 if db_nsr:
4009 self._write_ns_status(nsr_id=nsr_id, ns_state=None, current_operation="IDLE",
4010 current_operation_id=None, other_update=db_nsr_update)
4011
4012 if nslcmop_operation_state:
4013 try:
4014 msg = {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id, "operationState": nslcmop_operation_state}
4015 await self.msg.aiowrite("ns", "scaled", msg, loop=self.loop)
4016 except Exception as e:
4017 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
4018 self.logger.debug(logging_text + "Exit")
4019 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_scale")
4020
4021 async def _scale_ng_ro(self, logging_text, db_nsr, db_nslcmop, db_vnfr, vdu_scaling_info, stage):
4022 nsr_id = db_nslcmop["nsInstanceId"]
4023 db_nsd = self.db.get_one("nsds", {"_id": db_nsr["nsd-id"]})
4024 db_vnfrs = {}
4025
4026 # read from db: vnfd's for every vnf
4027 db_vnfds = []
4028
4029 # for each vnf in ns, read vnfd
4030 for vnfr in self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id}):
4031 db_vnfrs[vnfr["member-vnf-index-ref"]] = vnfr
4032 vnfd_id = vnfr["vnfd-id"] # vnfd uuid for this vnf
4033 # if we haven't this vnfd, read it from db
4034 if not find_in_list(db_vnfds, lambda a_vnfd: a_vnfd["id"] == vnfd_id):
4035 # read from db
4036 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
4037 db_vnfds.append(vnfd)
4038 n2vc_key = self.n2vc.get_public_key()
4039 n2vc_key_list = [n2vc_key]
4040 self.scale_vnfr(db_vnfr, vdu_scaling_info.get("vdu-create"), vdu_scaling_info.get("vdu-delete"),
4041 mark_delete=True)
4042 # db_vnfr has been updated, update db_vnfrs to use it
4043 db_vnfrs[db_vnfr["member-vnf-index-ref"]] = db_vnfr
4044 await self._instantiate_ng_ro(logging_text, nsr_id, db_nsd, db_nsr, db_nslcmop, db_vnfrs,
4045 db_vnfds, n2vc_key_list, stage=stage, start_deploy=time(),
4046 timeout_ns_deploy=self.timeout_ns_deploy)
4047 if vdu_scaling_info.get("vdu-delete"):
4048 self.scale_vnfr(db_vnfr, None, vdu_scaling_info["vdu-delete"], mark_delete=False)
4049
4050 async def add_prometheus_metrics(self, ee_id, artifact_path, ee_config_descriptor, vnfr_id, nsr_id, target_ip):
4051 if not self.prometheus:
4052 return
4053 # look if exist a file called 'prometheus*.j2' and
4054 artifact_content = self.fs.dir_ls(artifact_path)
4055 job_file = next((f for f in artifact_content if f.startswith("prometheus") and f.endswith(".j2")), None)
4056 if not job_file:
4057 return
4058 with self.fs.file_open((artifact_path, job_file), "r") as f:
4059 job_data = f.read()
4060
4061 # TODO get_service
4062 _, _, service = ee_id.partition(".") # remove prefix "namespace."
4063 host_name = "{}-{}".format(service, ee_config_descriptor["metric-service"])
4064 host_port = "80"
4065 vnfr_id = vnfr_id.replace("-", "")
4066 variables = {
4067 "JOB_NAME": vnfr_id,
4068 "TARGET_IP": target_ip,
4069 "EXPORTER_POD_IP": host_name,
4070 "EXPORTER_POD_PORT": host_port,
4071 }
4072 job_list = self.prometheus.parse_job(job_data, variables)
4073 # ensure job_name is using the vnfr_id. Adding the metadata nsr_id
4074 for job in job_list:
4075 if not isinstance(job.get("job_name"), str) or vnfr_id not in job["job_name"]:
4076 job["job_name"] = vnfr_id + "_" + str(randint(1, 10000))
4077 job["nsr_id"] = nsr_id
4078 job_dict = {jl["job_name"]: jl for jl in job_list}
4079 if await self.prometheus.update(job_dict):
4080 return list(job_dict.keys())
4081
4082 def get_vca_cloud_and_credentials(self, vim_account_id: str) -> (str, str):
4083 """
4084 Get VCA Cloud and VCA Cloud Credentials for the VIM account
4085
4086 :param: vim_account_id: VIM Account ID
4087
4088 :return: (cloud_name, cloud_credential)
4089 """
4090 config = VimAccountDB.get_vim_account_with_id(vim_account_id).get("config", {})
4091 return config.get("vca_cloud"), config.get("vca_cloud_credential")
4092
4093 def get_vca_k8s_cloud_and_credentials(self, vim_account_id: str) -> (str, str):
4094 """
4095 Get VCA K8s Cloud and VCA K8s Cloud Credentials for the VIM account
4096
4097 :param: vim_account_id: VIM Account ID
4098
4099 :return: (cloud_name, cloud_credential)
4100 """
4101 config = VimAccountDB.get_vim_account_with_id(vim_account_id).get("config", {})
4102 return config.get("vca_k8s_cloud"), config.get("vca_k8s_cloud_credential")