blob: 07f5845d8d60a10d8419aef7f78c18d84a07633e [file] [log] [blame]
tierno59d22d22018-09-25 18:10:19 +02001# -*- coding: utf-8 -*-
2
tierno2e215512018-11-28 09:37:52 +00003##
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
tierno59d22d22018-09-25 18:10:19 +020019import asyncio
20import yaml
21import logging
22import logging.handlers
tierno59d22d22018-09-25 18:10:19 +020023import traceback
David Garciad4816682019-12-09 14:57:43 +010024import json
gcalvino35be9152018-12-20 09:33:12 +010025from jinja2 import Environment, Template, meta, TemplateError, TemplateNotFound, TemplateSyntaxError
tierno59d22d22018-09-25 18:10:19 +020026
tierno77677d92019-08-22 13:46:35 +000027from osm_lcm import ROclient
tierno744303e2020-01-13 16:46:31 +000028from osm_lcm.lcm_utils import LcmException, LcmExceptionNoMgmtIP, LcmBase, deep_get, get_iterable, populate_dict
calvinosanch9f9c6f22019-11-04 13:37:39 +010029from n2vc.k8s_helm_conn import K8sHelmConnector
Adam Israelbaacc302019-12-01 12:41:39 -050030from n2vc.k8s_juju_conn import K8sJujuConnector
tierno59d22d22018-09-25 18:10:19 +020031
tierno27246d82018-09-27 15:59:09 +020032from osm_common.dbbase import DbException
tierno59d22d22018-09-25 18:10:19 +020033from osm_common.fsbase import FsException
quilesj7e13aeb2019-10-08 13:34:55 +020034
35from n2vc.n2vc_juju_conn import N2VCJujuConnector
tiernof59ad6c2020-04-08 12:50:52 +000036from n2vc.exceptions import N2VCException, N2VCNotFound, K8sException
tierno59d22d22018-09-25 18:10:19 +020037
tierno27246d82018-09-27 15:59:09 +020038from copy import copy, deepcopy
tierno59d22d22018-09-25 18:10:19 +020039from http import HTTPStatus
40from time import time
tierno27246d82018-09-27 15:59:09 +020041from uuid import uuid4
tiernob9018152020-04-16 14:18:24 +000042from functools import partial
tierno59d22d22018-09-25 18:10:19 +020043
44__author__ = "Alfonso Tierno"
45
46
47class NsLcm(LcmBase):
tierno63de62e2018-10-31 16:38:52 +010048 timeout_vca_on_error = 5 * 60 # Time for charm from first time at blocked,error status to mark as failed
tierno744303e2020-01-13 16:46:31 +000049 timeout_ns_deploy = 2 * 3600 # default global timeout for deployment a ns
tiernoe876f672020-02-13 14:34:48 +000050 timeout_ns_terminate = 1800 # default global timeout for un deployment a ns
garciadeblasf9b04952019-04-09 18:53:58 +020051 timeout_charm_delete = 10 * 60
52 timeout_primitive = 10 * 60 # timeout for primitive execution
tierno067e04a2020-03-31 12:53:13 +000053 timeout_progress_primitive = 2 * 60 # timeout for some progress in a primitive execution
tierno59d22d22018-09-25 18:10:19 +020054
kuuseac3a8882019-10-03 10:48:06 +020055 SUBOPERATION_STATUS_NOT_FOUND = -1
56 SUBOPERATION_STATUS_NEW = -2
57 SUBOPERATION_STATUS_SKIP = -3
tiernoa2143262020-03-27 16:20:40 +000058 task_name_deploy_vca = "Deploying VCA"
kuuseac3a8882019-10-03 10:48:06 +020059
tierno744303e2020-01-13 16:46:31 +000060 def __init__(self, db, msg, fs, lcm_tasks, config, loop):
tierno59d22d22018-09-25 18:10:19 +020061 """
62 Init, Connect to database, filesystem storage, and messaging
63 :param config: two level dictionary with configuration. Top level should contain 'database', 'storage',
64 :return: None
65 """
quilesj7e13aeb2019-10-08 13:34:55 +020066 super().__init__(
67 db=db,
68 msg=msg,
69 fs=fs,
70 logger=logging.getLogger('lcm.ns')
71 )
72
tierno59d22d22018-09-25 18:10:19 +020073 self.loop = loop
74 self.lcm_tasks = lcm_tasks
tierno744303e2020-01-13 16:46:31 +000075 self.timeout = config["timeout"]
76 self.ro_config = config["ro_config"]
77 self.vca_config = config["VCA"].copy()
tierno59d22d22018-09-25 18:10:19 +020078
quilesj7e13aeb2019-10-08 13:34:55 +020079 # create N2VC connector
80 self.n2vc = N2VCJujuConnector(
81 db=self.db,
82 fs=self.fs,
tierno59d22d22018-09-25 18:10:19 +020083 log=self.logger,
quilesj7e13aeb2019-10-08 13:34:55 +020084 loop=self.loop,
85 url='{}:{}'.format(self.vca_config['host'], self.vca_config['port']),
86 username=self.vca_config.get('user', None),
87 vca_config=self.vca_config,
quilesj3655ae02019-12-12 16:08:35 +000088 on_update_db=self._on_update_n2vc_db
tierno59d22d22018-09-25 18:10:19 +020089 )
quilesj7e13aeb2019-10-08 13:34:55 +020090
calvinosanch9f9c6f22019-11-04 13:37:39 +010091 self.k8sclusterhelm = K8sHelmConnector(
92 kubectl_command=self.vca_config.get("kubectlpath"),
93 helm_command=self.vca_config.get("helmpath"),
94 fs=self.fs,
95 log=self.logger,
96 db=self.db,
97 on_update_db=None,
98 )
99
Adam Israelbaacc302019-12-01 12:41:39 -0500100 self.k8sclusterjuju = K8sJujuConnector(
101 kubectl_command=self.vca_config.get("kubectlpath"),
102 juju_command=self.vca_config.get("jujupath"),
103 fs=self.fs,
104 log=self.logger,
105 db=self.db,
106 on_update_db=None,
107 )
108
tiernoa2143262020-03-27 16:20:40 +0000109 self.k8scluster_map = {
110 "helm-chart": self.k8sclusterhelm,
111 "chart": self.k8sclusterhelm,
112 "juju-bundle": self.k8sclusterjuju,
113 "juju": self.k8sclusterjuju,
114 }
quilesj7e13aeb2019-10-08 13:34:55 +0200115 # create RO client
tierno77677d92019-08-22 13:46:35 +0000116 self.RO = ROclient.ROClient(self.loop, **self.ro_config)
tierno59d22d22018-09-25 18:10:19 +0200117
quilesj3655ae02019-12-12 16:08:35 +0000118 def _on_update_ro_db(self, nsrs_id, ro_descriptor):
quilesj7e13aeb2019-10-08 13:34:55 +0200119
quilesj3655ae02019-12-12 16:08:35 +0000120 # self.logger.debug('_on_update_ro_db(nsrs_id={}'.format(nsrs_id))
121
122 try:
123 # TODO filter RO descriptor fields...
124
125 # write to database
126 db_dict = dict()
127 # db_dict['deploymentStatus'] = yaml.dump(ro_descriptor, default_flow_style=False, indent=2)
128 db_dict['deploymentStatus'] = ro_descriptor
129 self.update_db_2("nsrs", nsrs_id, db_dict)
130
131 except Exception as e:
132 self.logger.warn('Cannot write database RO deployment for ns={} -> {}'.format(nsrs_id, e))
133
134 async def _on_update_n2vc_db(self, table, filter, path, updated_data):
135
quilesj69a722c2020-01-09 08:30:17 +0000136 # remove last dot from path (if exists)
137 if path.endswith('.'):
138 path = path[:-1]
139
quilesj3655ae02019-12-12 16:08:35 +0000140 # self.logger.debug('_on_update_n2vc_db(table={}, filter={}, path={}, updated_data={}'
141 # .format(table, filter, path, updated_data))
142
143 try:
144
145 nsr_id = filter.get('_id')
146
147 # read ns record from database
148 nsr = self.db.get_one(table='nsrs', q_filter=filter)
149 current_ns_status = nsr.get('nsState')
150
151 # get vca status for NS
quilesj69a722c2020-01-09 08:30:17 +0000152 status_dict = await self.n2vc.get_status(namespace='.' + nsr_id, yaml_format=False)
quilesj3655ae02019-12-12 16:08:35 +0000153
154 # vcaStatus
155 db_dict = dict()
156 db_dict['vcaStatus'] = status_dict
157
158 # update configurationStatus for this VCA
159 try:
160 vca_index = int(path[path.rfind(".")+1:])
161
162 vca_list = deep_get(target_dict=nsr, key_list=('_admin', 'deployed', 'VCA'))
163 vca_status = vca_list[vca_index].get('status')
164
165 configuration_status_list = nsr.get('configurationStatus')
166 config_status = configuration_status_list[vca_index].get('status')
167
168 if config_status == 'BROKEN' and vca_status != 'failed':
169 db_dict['configurationStatus'][vca_index] = 'READY'
170 elif config_status != 'BROKEN' and vca_status == 'failed':
171 db_dict['configurationStatus'][vca_index] = 'BROKEN'
172 except Exception as e:
173 # not update configurationStatus
174 self.logger.debug('Error updating vca_index (ignore): {}'.format(e))
175
176 # if nsState = 'READY' check if juju is reporting some error => nsState = 'DEGRADED'
177 # if nsState = 'DEGRADED' check if all is OK
178 is_degraded = False
179 if current_ns_status in ('READY', 'DEGRADED'):
180 error_description = ''
181 # check machines
182 if status_dict.get('machines'):
183 for machine_id in status_dict.get('machines'):
184 machine = status_dict.get('machines').get(machine_id)
185 # check machine agent-status
186 if machine.get('agent-status'):
187 s = machine.get('agent-status').get('status')
188 if s != 'started':
189 is_degraded = True
190 error_description += 'machine {} agent-status={} ; '.format(machine_id, s)
191 # check machine instance status
192 if machine.get('instance-status'):
193 s = machine.get('instance-status').get('status')
194 if s != 'running':
195 is_degraded = True
196 error_description += 'machine {} instance-status={} ; '.format(machine_id, s)
197 # check applications
198 if status_dict.get('applications'):
199 for app_id in status_dict.get('applications'):
200 app = status_dict.get('applications').get(app_id)
201 # check application status
202 if app.get('status'):
203 s = app.get('status').get('status')
204 if s != 'active':
205 is_degraded = True
206 error_description += 'application {} status={} ; '.format(app_id, s)
207
208 if error_description:
209 db_dict['errorDescription'] = error_description
210 if current_ns_status == 'READY' and is_degraded:
211 db_dict['nsState'] = 'DEGRADED'
212 if current_ns_status == 'DEGRADED' and not is_degraded:
213 db_dict['nsState'] = 'READY'
214
215 # write to database
216 self.update_db_2("nsrs", nsr_id, db_dict)
217
tierno51183952020-04-03 15:48:18 +0000218 except (asyncio.CancelledError, asyncio.TimeoutError):
219 raise
quilesj3655ae02019-12-12 16:08:35 +0000220 except Exception as e:
221 self.logger.warn('Error updating NS state for ns={}: {}'.format(nsr_id, e))
quilesj7e13aeb2019-10-08 13:34:55 +0200222
gcalvino35be9152018-12-20 09:33:12 +0100223 def vnfd2RO(self, vnfd, new_id=None, additionalParams=None, nsrId=None):
tierno59d22d22018-09-25 18:10:19 +0200224 """
225 Converts creates a new vnfd descriptor for RO base on input OSM IM vnfd
226 :param vnfd: input vnfd
227 :param new_id: overrides vnf id if provided
tierno8a518872018-12-21 13:42:14 +0000228 :param additionalParams: Instantiation params for VNFs provided
gcalvino35be9152018-12-20 09:33:12 +0100229 :param nsrId: Id of the NSR
tierno59d22d22018-09-25 18:10:19 +0200230 :return: copy of vnfd
231 """
tierno59d22d22018-09-25 18:10:19 +0200232 try:
233 vnfd_RO = deepcopy(vnfd)
tierno8a518872018-12-21 13:42:14 +0000234 # remove unused by RO configuration, monitoring, scaling and internal keys
tierno59d22d22018-09-25 18:10:19 +0200235 vnfd_RO.pop("_id", None)
236 vnfd_RO.pop("_admin", None)
tierno8a518872018-12-21 13:42:14 +0000237 vnfd_RO.pop("vnf-configuration", None)
238 vnfd_RO.pop("monitoring-param", None)
239 vnfd_RO.pop("scaling-group-descriptor", None)
calvinosanch9f9c6f22019-11-04 13:37:39 +0100240 vnfd_RO.pop("kdu", None)
241 vnfd_RO.pop("k8s-cluster", None)
tierno59d22d22018-09-25 18:10:19 +0200242 if new_id:
243 vnfd_RO["id"] = new_id
tierno8a518872018-12-21 13:42:14 +0000244
245 # parse cloud-init or cloud-init-file with the provided variables using Jinja2
246 for vdu in get_iterable(vnfd_RO, "vdu"):
247 cloud_init_file = None
248 if vdu.get("cloud-init-file"):
tierno59d22d22018-09-25 18:10:19 +0200249 base_folder = vnfd["_admin"]["storage"]
gcalvino35be9152018-12-20 09:33:12 +0100250 cloud_init_file = "{}/{}/cloud_init/{}".format(base_folder["folder"], base_folder["pkg-dir"],
251 vdu["cloud-init-file"])
252 with self.fs.file_open(cloud_init_file, "r") as ci_file:
253 cloud_init_content = ci_file.read()
tierno59d22d22018-09-25 18:10:19 +0200254 vdu.pop("cloud-init-file", None)
tierno8a518872018-12-21 13:42:14 +0000255 elif vdu.get("cloud-init"):
gcalvino35be9152018-12-20 09:33:12 +0100256 cloud_init_content = vdu["cloud-init"]
tierno8a518872018-12-21 13:42:14 +0000257 else:
258 continue
259
260 env = Environment()
261 ast = env.parse(cloud_init_content)
262 mandatory_vars = meta.find_undeclared_variables(ast)
263 if mandatory_vars:
264 for var in mandatory_vars:
265 if not additionalParams or var not in additionalParams.keys():
266 raise LcmException("Variable '{}' defined at vnfd[id={}]:vdu[id={}]:cloud-init/cloud-init-"
267 "file, must be provided in the instantiation parameters inside the "
268 "'additionalParamsForVnf' block".format(var, vnfd["id"], vdu["id"]))
269 template = Template(cloud_init_content)
tierno2b611dd2019-01-11 10:30:57 +0000270 cloud_init_content = template.render(additionalParams or {})
gcalvino35be9152018-12-20 09:33:12 +0100271 vdu["cloud-init"] = cloud_init_content
tierno8a518872018-12-21 13:42:14 +0000272
tierno59d22d22018-09-25 18:10:19 +0200273 return vnfd_RO
274 except FsException as e:
tierno8a518872018-12-21 13:42:14 +0000275 raise LcmException("Error reading vnfd[id={}]:vdu[id={}]:cloud-init-file={}: {}".
tiernoda964822019-01-14 15:53:47 +0000276 format(vnfd["id"], vdu["id"], cloud_init_file, e))
tierno8a518872018-12-21 13:42:14 +0000277 except (TemplateError, TemplateNotFound, TemplateSyntaxError) as e:
278 raise LcmException("Error parsing Jinja2 to cloud-init content at vnfd[id={}]:vdu[id={}]: {}".
279 format(vnfd["id"], vdu["id"], e))
tierno59d22d22018-09-25 18:10:19 +0200280
tiernoe95ed362020-04-23 08:24:57 +0000281 def _ns_params_2_RO(self, ns_params, nsd, vnfd_dict, db_vnfrs, n2vc_key_list):
tierno59d22d22018-09-25 18:10:19 +0200282 """
tierno27246d82018-09-27 15:59:09 +0200283 Creates a RO ns descriptor from OSM ns_instantiate params
tierno59d22d22018-09-25 18:10:19 +0200284 :param ns_params: OSM instantiate params
tiernoe95ed362020-04-23 08:24:57 +0000285 :param vnfd_dict: database content of vnfds, indexed by id (not _id). {id: {vnfd_object}, ...}
286 :param db_vnfrs: database content of vnfrs, indexed by member-vnf-index. {member-vnf-index: {vnfr_object}, ...}
tierno59d22d22018-09-25 18:10:19 +0200287 :return: The RO ns descriptor
288 """
289 vim_2_RO = {}
tiernob7f3f0d2019-03-20 17:17:21 +0000290 wim_2_RO = {}
tierno27246d82018-09-27 15:59:09 +0200291 # TODO feature 1417: Check that no instantiation is set over PDU
292 # check if PDU forces a concrete vim-network-id and add it
293 # check if PDU contains a SDN-assist info (dpid, switch, port) and pass it to RO
tierno59d22d22018-09-25 18:10:19 +0200294
295 def vim_account_2_RO(vim_account):
296 if vim_account in vim_2_RO:
297 return vim_2_RO[vim_account]
298
299 db_vim = self.db.get_one("vim_accounts", {"_id": vim_account})
300 if db_vim["_admin"]["operationalState"] != "ENABLED":
301 raise LcmException("VIM={} is not available. operationalState={}".format(
302 vim_account, db_vim["_admin"]["operationalState"]))
303 RO_vim_id = db_vim["_admin"]["deployed"]["RO"]
304 vim_2_RO[vim_account] = RO_vim_id
305 return RO_vim_id
306
tiernob7f3f0d2019-03-20 17:17:21 +0000307 def wim_account_2_RO(wim_account):
308 if isinstance(wim_account, str):
309 if wim_account in wim_2_RO:
310 return wim_2_RO[wim_account]
311
312 db_wim = self.db.get_one("wim_accounts", {"_id": wim_account})
313 if db_wim["_admin"]["operationalState"] != "ENABLED":
314 raise LcmException("WIM={} is not available. operationalState={}".format(
315 wim_account, db_wim["_admin"]["operationalState"]))
316 RO_wim_id = db_wim["_admin"]["deployed"]["RO-account"]
317 wim_2_RO[wim_account] = RO_wim_id
318 return RO_wim_id
319 else:
320 return wim_account
321
tierno59d22d22018-09-25 18:10:19 +0200322 def ip_profile_2_RO(ip_profile):
323 RO_ip_profile = deepcopy((ip_profile))
324 if "dns-server" in RO_ip_profile:
325 if isinstance(RO_ip_profile["dns-server"], list):
326 RO_ip_profile["dns-address"] = []
327 for ds in RO_ip_profile.pop("dns-server"):
328 RO_ip_profile["dns-address"].append(ds['address'])
329 else:
330 RO_ip_profile["dns-address"] = RO_ip_profile.pop("dns-server")
331 if RO_ip_profile.get("ip-version") == "ipv4":
332 RO_ip_profile["ip-version"] = "IPv4"
333 if RO_ip_profile.get("ip-version") == "ipv6":
334 RO_ip_profile["ip-version"] = "IPv6"
335 if "dhcp-params" in RO_ip_profile:
336 RO_ip_profile["dhcp"] = RO_ip_profile.pop("dhcp-params")
337 return RO_ip_profile
338
339 if not ns_params:
340 return None
341 RO_ns_params = {
342 # "name": ns_params["nsName"],
343 # "description": ns_params.get("nsDescription"),
344 "datacenter": vim_account_2_RO(ns_params["vimAccountId"]),
tiernob7f3f0d2019-03-20 17:17:21 +0000345 "wim_account": wim_account_2_RO(ns_params.get("wimAccountId")),
tierno59d22d22018-09-25 18:10:19 +0200346 # "scenario": ns_params["nsdId"],
tierno59d22d22018-09-25 18:10:19 +0200347 }
tiernoe95ed362020-04-23 08:24:57 +0000348 # set vim_account of each vnf if different from general vim_account.
349 # Get this information from <vnfr> database content, key vim-account-id
350 # Vim account can be set by placement_engine and it may be different from
351 # the instantiate parameters (vnfs.member-vnf-index.datacenter).
352 for vnf_index, vnfr in db_vnfrs.items():
353 if vnfr.get("vim-account-id") and vnfr["vim-account-id"] != ns_params["vimAccountId"]:
354 populate_dict(RO_ns_params, ("vnfs", vnf_index, "datacenter"), vim_account_2_RO(vnfr["vim-account-id"]))
quilesj7e13aeb2019-10-08 13:34:55 +0200355
tiernoe64f7fb2019-09-11 08:55:52 +0000356 n2vc_key_list = n2vc_key_list or []
357 for vnfd_ref, vnfd in vnfd_dict.items():
358 vdu_needed_access = []
359 mgmt_cp = None
360 if vnfd.get("vnf-configuration"):
tierno6cf25f52019-09-12 09:33:40 +0000361 ssh_required = deep_get(vnfd, ("vnf-configuration", "config-access", "ssh-access", "required"))
tiernoe64f7fb2019-09-11 08:55:52 +0000362 if ssh_required and vnfd.get("mgmt-interface"):
363 if vnfd["mgmt-interface"].get("vdu-id"):
364 vdu_needed_access.append(vnfd["mgmt-interface"]["vdu-id"])
365 elif vnfd["mgmt-interface"].get("cp"):
366 mgmt_cp = vnfd["mgmt-interface"]["cp"]
tierno27246d82018-09-27 15:59:09 +0200367
tiernoe64f7fb2019-09-11 08:55:52 +0000368 for vdu in vnfd.get("vdu", ()):
369 if vdu.get("vdu-configuration"):
tierno6cf25f52019-09-12 09:33:40 +0000370 ssh_required = deep_get(vdu, ("vdu-configuration", "config-access", "ssh-access", "required"))
tiernoe64f7fb2019-09-11 08:55:52 +0000371 if ssh_required:
tierno27246d82018-09-27 15:59:09 +0200372 vdu_needed_access.append(vdu["id"])
tiernoe64f7fb2019-09-11 08:55:52 +0000373 elif mgmt_cp:
374 for vdu_interface in vdu.get("interface"):
375 if vdu_interface.get("external-connection-point-ref") and \
376 vdu_interface["external-connection-point-ref"] == mgmt_cp:
377 vdu_needed_access.append(vdu["id"])
378 mgmt_cp = None
379 break
tierno27246d82018-09-27 15:59:09 +0200380
tiernoe64f7fb2019-09-11 08:55:52 +0000381 if vdu_needed_access:
382 for vnf_member in nsd.get("constituent-vnfd"):
383 if vnf_member["vnfd-id-ref"] != vnfd_ref:
384 continue
385 for vdu in vdu_needed_access:
386 populate_dict(RO_ns_params,
387 ("vnfs", vnf_member["member-vnf-index"], "vdus", vdu, "mgmt_keys"),
388 n2vc_key_list)
tierno27246d82018-09-27 15:59:09 +0200389
tierno25ec7732018-10-24 18:47:11 +0200390 if ns_params.get("vduImage"):
391 RO_ns_params["vduImage"] = ns_params["vduImage"]
392
tiernoc255a822018-10-31 09:41:53 +0100393 if ns_params.get("ssh_keys"):
394 RO_ns_params["cloud-config"] = {"key-pairs": ns_params["ssh_keys"]}
tierno27246d82018-09-27 15:59:09 +0200395 for vnf_params in get_iterable(ns_params, "vnf"):
396 for constituent_vnfd in nsd["constituent-vnfd"]:
397 if constituent_vnfd["member-vnf-index"] == vnf_params["member-vnf-index"]:
398 vnf_descriptor = vnfd_dict[constituent_vnfd["vnfd-id-ref"]]
399 break
400 else:
401 raise LcmException("Invalid instantiate parameter vnf:member-vnf-index={} is not present at nsd:"
402 "constituent-vnfd".format(vnf_params["member-vnf-index"]))
tierno59d22d22018-09-25 18:10:19 +0200403
tierno27246d82018-09-27 15:59:09 +0200404 for vdu_params in get_iterable(vnf_params, "vdu"):
405 # TODO feature 1417: check that this VDU exist and it is not a PDU
406 if vdu_params.get("volume"):
407 for volume_params in vdu_params["volume"]:
408 if volume_params.get("vim-volume-id"):
409 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
410 vdu_params["id"], "devices", volume_params["name"], "vim_id"),
411 volume_params["vim-volume-id"])
412 if vdu_params.get("interface"):
413 for interface_params in vdu_params["interface"]:
414 if interface_params.get("ip-address"):
415 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
416 vdu_params["id"], "interfaces", interface_params["name"],
417 "ip_address"),
418 interface_params["ip-address"])
419 if interface_params.get("mac-address"):
420 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
421 vdu_params["id"], "interfaces", interface_params["name"],
422 "mac_address"),
423 interface_params["mac-address"])
424 if interface_params.get("floating-ip-required"):
425 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
426 vdu_params["id"], "interfaces", interface_params["name"],
427 "floating-ip"),
428 interface_params["floating-ip-required"])
429
430 for internal_vld_params in get_iterable(vnf_params, "internal-vld"):
431 if internal_vld_params.get("vim-network-name"):
432 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "networks",
433 internal_vld_params["name"], "vim-network-name"),
434 internal_vld_params["vim-network-name"])
gcalvino0d7ac8d2018-12-17 16:24:08 +0100435 if internal_vld_params.get("vim-network-id"):
436 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "networks",
437 internal_vld_params["name"], "vim-network-id"),
438 internal_vld_params["vim-network-id"])
tierno27246d82018-09-27 15:59:09 +0200439 if internal_vld_params.get("ip-profile"):
440 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "networks",
441 internal_vld_params["name"], "ip-profile"),
442 ip_profile_2_RO(internal_vld_params["ip-profile"]))
kbsub4d761eb2019-10-17 16:28:48 +0000443 if internal_vld_params.get("provider-network"):
444
445 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "networks",
446 internal_vld_params["name"], "provider-network"),
447 internal_vld_params["provider-network"].copy())
tierno27246d82018-09-27 15:59:09 +0200448
449 for icp_params in get_iterable(internal_vld_params, "internal-connection-point"):
450 # look for interface
451 iface_found = False
452 for vdu_descriptor in vnf_descriptor["vdu"]:
453 for vdu_interface in vdu_descriptor["interface"]:
454 if vdu_interface.get("internal-connection-point-ref") == icp_params["id-ref"]:
455 if icp_params.get("ip-address"):
456 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
457 vdu_descriptor["id"], "interfaces",
458 vdu_interface["name"], "ip_address"),
459 icp_params["ip-address"])
460
461 if icp_params.get("mac-address"):
462 populate_dict(RO_ns_params, ("vnfs", vnf_params["member-vnf-index"], "vdus",
463 vdu_descriptor["id"], "interfaces",
464 vdu_interface["name"], "mac_address"),
465 icp_params["mac-address"])
466 iface_found = True
tierno59d22d22018-09-25 18:10:19 +0200467 break
tierno27246d82018-09-27 15:59:09 +0200468 if iface_found:
469 break
470 else:
471 raise LcmException("Invalid instantiate parameter vnf:member-vnf-index[{}]:"
472 "internal-vld:id-ref={} is not present at vnfd:internal-"
473 "connection-point".format(vnf_params["member-vnf-index"],
474 icp_params["id-ref"]))
475
476 for vld_params in get_iterable(ns_params, "vld"):
477 if "ip-profile" in vld_params:
478 populate_dict(RO_ns_params, ("networks", vld_params["name"], "ip-profile"),
479 ip_profile_2_RO(vld_params["ip-profile"]))
tiernob7f3f0d2019-03-20 17:17:21 +0000480
kbsub4d761eb2019-10-17 16:28:48 +0000481 if vld_params.get("provider-network"):
482
483 populate_dict(RO_ns_params, ("networks", vld_params["name"], "provider-network"),
484 vld_params["provider-network"].copy())
485
tiernob7f3f0d2019-03-20 17:17:21 +0000486 if "wimAccountId" in vld_params and vld_params["wimAccountId"] is not None:
487 populate_dict(RO_ns_params, ("networks", vld_params["name"], "wim_account"),
488 wim_account_2_RO(vld_params["wimAccountId"])),
tierno27246d82018-09-27 15:59:09 +0200489 if vld_params.get("vim-network-name"):
490 RO_vld_sites = []
491 if isinstance(vld_params["vim-network-name"], dict):
492 for vim_account, vim_net in vld_params["vim-network-name"].items():
493 RO_vld_sites.append({
494 "netmap-use": vim_net,
495 "datacenter": vim_account_2_RO(vim_account)
496 })
497 else: # isinstance str
498 RO_vld_sites.append({"netmap-use": vld_params["vim-network-name"]})
499 if RO_vld_sites:
500 populate_dict(RO_ns_params, ("networks", vld_params["name"], "sites"), RO_vld_sites)
kbsub4d761eb2019-10-17 16:28:48 +0000501
gcalvino0d7ac8d2018-12-17 16:24:08 +0100502 if vld_params.get("vim-network-id"):
503 RO_vld_sites = []
504 if isinstance(vld_params["vim-network-id"], dict):
505 for vim_account, vim_net in vld_params["vim-network-id"].items():
506 RO_vld_sites.append({
507 "netmap-use": vim_net,
508 "datacenter": vim_account_2_RO(vim_account)
509 })
510 else: # isinstance str
511 RO_vld_sites.append({"netmap-use": vld_params["vim-network-id"]})
512 if RO_vld_sites:
513 populate_dict(RO_ns_params, ("networks", vld_params["name"], "sites"), RO_vld_sites)
Felipe Vicens720b07a2019-01-31 02:32:09 +0100514 if vld_params.get("ns-net"):
515 if isinstance(vld_params["ns-net"], dict):
516 for vld_id, instance_scenario_id in vld_params["ns-net"].items():
517 RO_vld_ns_net = {"instance_scenario_id": instance_scenario_id, "osm_id": vld_id}
Felipe Vicensb0e5fe42019-12-05 10:30:38 +0100518 populate_dict(RO_ns_params, ("networks", vld_params["name"], "use-network"), RO_vld_ns_net)
tierno27246d82018-09-27 15:59:09 +0200519 if "vnfd-connection-point-ref" in vld_params:
520 for cp_params in vld_params["vnfd-connection-point-ref"]:
521 # look for interface
522 for constituent_vnfd in nsd["constituent-vnfd"]:
523 if constituent_vnfd["member-vnf-index"] == cp_params["member-vnf-index-ref"]:
524 vnf_descriptor = vnfd_dict[constituent_vnfd["vnfd-id-ref"]]
525 break
526 else:
527 raise LcmException(
528 "Invalid instantiate parameter vld:vnfd-connection-point-ref:member-vnf-index-ref={} "
529 "is not present at nsd:constituent-vnfd".format(cp_params["member-vnf-index-ref"]))
530 match_cp = False
531 for vdu_descriptor in vnf_descriptor["vdu"]:
532 for interface_descriptor in vdu_descriptor["interface"]:
533 if interface_descriptor.get("external-connection-point-ref") == \
534 cp_params["vnfd-connection-point-ref"]:
535 match_cp = True
tierno59d22d22018-09-25 18:10:19 +0200536 break
tierno27246d82018-09-27 15:59:09 +0200537 if match_cp:
538 break
539 else:
540 raise LcmException(
541 "Invalid instantiate parameter vld:vnfd-connection-point-ref:member-vnf-index-ref={}:"
542 "vnfd-connection-point-ref={} is not present at vnfd={}".format(
543 cp_params["member-vnf-index-ref"],
544 cp_params["vnfd-connection-point-ref"],
545 vnf_descriptor["id"]))
546 if cp_params.get("ip-address"):
547 populate_dict(RO_ns_params, ("vnfs", cp_params["member-vnf-index-ref"], "vdus",
548 vdu_descriptor["id"], "interfaces",
549 interface_descriptor["name"], "ip_address"),
550 cp_params["ip-address"])
551 if cp_params.get("mac-address"):
552 populate_dict(RO_ns_params, ("vnfs", cp_params["member-vnf-index-ref"], "vdus",
553 vdu_descriptor["id"], "interfaces",
554 interface_descriptor["name"], "mac_address"),
555 cp_params["mac-address"])
tierno59d22d22018-09-25 18:10:19 +0200556 return RO_ns_params
557
tierno27246d82018-09-27 15:59:09 +0200558 def scale_vnfr(self, db_vnfr, vdu_create=None, vdu_delete=None):
559 # make a copy to do not change
560 vdu_create = copy(vdu_create)
561 vdu_delete = copy(vdu_delete)
562
563 vdurs = db_vnfr.get("vdur")
564 if vdurs is None:
565 vdurs = []
566 vdu_index = len(vdurs)
567 while vdu_index:
568 vdu_index -= 1
569 vdur = vdurs[vdu_index]
570 if vdur.get("pdu-type"):
571 continue
572 vdu_id_ref = vdur["vdu-id-ref"]
573 if vdu_create and vdu_create.get(vdu_id_ref):
574 for index in range(0, vdu_create[vdu_id_ref]):
575 vdur = deepcopy(vdur)
576 vdur["_id"] = str(uuid4())
577 vdur["count-index"] += 1
578 vdurs.insert(vdu_index+1+index, vdur)
579 del vdu_create[vdu_id_ref]
580 if vdu_delete and vdu_delete.get(vdu_id_ref):
581 del vdurs[vdu_index]
582 vdu_delete[vdu_id_ref] -= 1
583 if not vdu_delete[vdu_id_ref]:
584 del vdu_delete[vdu_id_ref]
585 # check all operations are done
586 if vdu_create or vdu_delete:
587 raise LcmException("Error scaling OUT VNFR for {}. There is not any existing vnfr. Scaled to 0?".format(
588 vdu_create))
589 if vdu_delete:
590 raise LcmException("Error scaling IN VNFR for {}. There is not any existing vnfr. Scaled to 0?".format(
591 vdu_delete))
592
593 vnfr_update = {"vdur": vdurs}
594 db_vnfr["vdur"] = vdurs
595 self.update_db_2("vnfrs", db_vnfr["_id"], vnfr_update)
596
tiernof578e552018-11-08 19:07:20 +0100597 def ns_update_nsr(self, ns_update_nsr, db_nsr, nsr_desc_RO):
598 """
599 Updates database nsr with the RO info for the created vld
600 :param ns_update_nsr: dictionary to be filled with the updated info
601 :param db_nsr: content of db_nsr. This is also modified
602 :param nsr_desc_RO: nsr descriptor from RO
603 :return: Nothing, LcmException is raised on errors
604 """
605
606 for vld_index, vld in enumerate(get_iterable(db_nsr, "vld")):
607 for net_RO in get_iterable(nsr_desc_RO, "nets"):
608 if vld["id"] != net_RO.get("ns_net_osm_id"):
609 continue
610 vld["vim-id"] = net_RO.get("vim_net_id")
611 vld["name"] = net_RO.get("vim_name")
612 vld["status"] = net_RO.get("status")
613 vld["status-detailed"] = net_RO.get("error_msg")
614 ns_update_nsr["vld.{}".format(vld_index)] = vld
615 break
616 else:
617 raise LcmException("ns_update_nsr: Not found vld={} at RO info".format(vld["id"]))
618
tiernoe876f672020-02-13 14:34:48 +0000619 def set_vnfr_at_error(self, db_vnfrs, error_text):
620 try:
621 for db_vnfr in db_vnfrs.values():
622 vnfr_update = {"status": "ERROR"}
623 for vdu_index, vdur in enumerate(get_iterable(db_vnfr, "vdur")):
624 if "status" not in vdur:
625 vdur["status"] = "ERROR"
626 vnfr_update["vdur.{}.status".format(vdu_index)] = "ERROR"
627 if error_text:
628 vdur["status-detailed"] = str(error_text)
629 vnfr_update["vdur.{}.status-detailed".format(vdu_index)] = "ERROR"
630 self.update_db_2("vnfrs", db_vnfr["_id"], vnfr_update)
631 except DbException as e:
632 self.logger.error("Cannot update vnf. {}".format(e))
633
tierno59d22d22018-09-25 18:10:19 +0200634 def ns_update_vnfr(self, db_vnfrs, nsr_desc_RO):
635 """
636 Updates database vnfr with the RO info, e.g. ip_address, vim_id... Descriptor db_vnfrs is also updated
tierno27246d82018-09-27 15:59:09 +0200637 :param db_vnfrs: dictionary with member-vnf-index: vnfr-content
638 :param nsr_desc_RO: nsr descriptor from RO
639 :return: Nothing, LcmException is raised on errors
tierno59d22d22018-09-25 18:10:19 +0200640 """
641 for vnf_index, db_vnfr in db_vnfrs.items():
642 for vnf_RO in nsr_desc_RO["vnfs"]:
tierno27246d82018-09-27 15:59:09 +0200643 if vnf_RO["member_vnf_index"] != vnf_index:
644 continue
645 vnfr_update = {}
tiernof578e552018-11-08 19:07:20 +0100646 if vnf_RO.get("ip_address"):
tierno1674de82019-04-09 13:03:14 +0000647 db_vnfr["ip-address"] = vnfr_update["ip-address"] = vnf_RO["ip_address"].split(";")[0]
tiernof578e552018-11-08 19:07:20 +0100648 elif not db_vnfr.get("ip-address"):
tierno0ec0c272020-02-19 17:43:01 +0000649 if db_vnfr.get("vdur"): # if not VDUs, there is not ip_address
650 raise LcmExceptionNoMgmtIP("ns member_vnf_index '{}' has no IP address".format(vnf_index))
tierno59d22d22018-09-25 18:10:19 +0200651
tierno27246d82018-09-27 15:59:09 +0200652 for vdu_index, vdur in enumerate(get_iterable(db_vnfr, "vdur")):
653 vdur_RO_count_index = 0
654 if vdur.get("pdu-type"):
655 continue
656 for vdur_RO in get_iterable(vnf_RO, "vms"):
657 if vdur["vdu-id-ref"] != vdur_RO["vdu_osm_id"]:
658 continue
659 if vdur["count-index"] != vdur_RO_count_index:
660 vdur_RO_count_index += 1
661 continue
662 vdur["vim-id"] = vdur_RO.get("vim_vm_id")
tierno1674de82019-04-09 13:03:14 +0000663 if vdur_RO.get("ip_address"):
664 vdur["ip-address"] = vdur_RO["ip_address"].split(";")[0]
tierno274ed572019-04-04 13:33:27 +0000665 else:
666 vdur["ip-address"] = None
tierno27246d82018-09-27 15:59:09 +0200667 vdur["vdu-id-ref"] = vdur_RO.get("vdu_osm_id")
668 vdur["name"] = vdur_RO.get("vim_name")
669 vdur["status"] = vdur_RO.get("status")
670 vdur["status-detailed"] = vdur_RO.get("error_msg")
671 for ifacer in get_iterable(vdur, "interfaces"):
672 for interface_RO in get_iterable(vdur_RO, "interfaces"):
673 if ifacer["name"] == interface_RO.get("internal_name"):
674 ifacer["ip-address"] = interface_RO.get("ip_address")
675 ifacer["mac-address"] = interface_RO.get("mac_address")
676 break
677 else:
678 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vdur={} interface={} "
quilesj7e13aeb2019-10-08 13:34:55 +0200679 "from VIM info"
680 .format(vnf_index, vdur["vdu-id-ref"], ifacer["name"]))
tierno27246d82018-09-27 15:59:09 +0200681 vnfr_update["vdur.{}".format(vdu_index)] = vdur
682 break
683 else:
tierno15b1cf12019-08-29 13:21:40 +0000684 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vdur={} count_index={} from "
685 "VIM info".format(vnf_index, vdur["vdu-id-ref"], vdur["count-index"]))
tiernof578e552018-11-08 19:07:20 +0100686
687 for vld_index, vld in enumerate(get_iterable(db_vnfr, "vld")):
688 for net_RO in get_iterable(nsr_desc_RO, "nets"):
689 if vld["id"] != net_RO.get("vnf_net_osm_id"):
690 continue
691 vld["vim-id"] = net_RO.get("vim_net_id")
692 vld["name"] = net_RO.get("vim_name")
693 vld["status"] = net_RO.get("status")
694 vld["status-detailed"] = net_RO.get("error_msg")
695 vnfr_update["vld.{}".format(vld_index)] = vld
696 break
697 else:
tierno15b1cf12019-08-29 13:21:40 +0000698 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} vld={} from VIM info".format(
tiernof578e552018-11-08 19:07:20 +0100699 vnf_index, vld["id"]))
700
tierno27246d82018-09-27 15:59:09 +0200701 self.update_db_2("vnfrs", db_vnfr["_id"], vnfr_update)
702 break
tierno59d22d22018-09-25 18:10:19 +0200703
704 else:
tierno15b1cf12019-08-29 13:21:40 +0000705 raise LcmException("ns_update_vnfr: Not found member_vnf_index={} from VIM info".format(vnf_index))
tierno59d22d22018-09-25 18:10:19 +0200706
tierno5ee02052019-12-05 19:55:02 +0000707 def _get_ns_config_info(self, nsr_id):
tiernoc3f2a822019-11-05 13:45:04 +0000708 """
709 Generates a mapping between vnf,vdu elements and the N2VC id
tierno5ee02052019-12-05 19:55:02 +0000710 :param nsr_id: id of nsr to get last database _admin.deployed.VCA that contains this list
tiernoc3f2a822019-11-05 13:45:04 +0000711 :return: a dictionary with {osm-config-mapping: {}} where its element contains:
712 "<member-vnf-index>": <N2VC-id> for a vnf configuration, or
713 "<member-vnf-index>.<vdu.id>.<vdu replica(0, 1,..)>": <N2VC-id> for a vdu configuration
714 """
tierno5ee02052019-12-05 19:55:02 +0000715 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
716 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
tiernoc3f2a822019-11-05 13:45:04 +0000717 mapping = {}
718 ns_config_info = {"osm-config-mapping": mapping}
719 for vca in vca_deployed_list:
720 if not vca["member-vnf-index"]:
721 continue
722 if not vca["vdu_id"]:
723 mapping[vca["member-vnf-index"]] = vca["application"]
724 else:
725 mapping["{}.{}.{}".format(vca["member-vnf-index"], vca["vdu_id"], vca["vdu_count_index"])] =\
726 vca["application"]
727 return ns_config_info
728
729 @staticmethod
730 def _get_initial_config_primitive_list(desc_primitive_list, vca_deployed):
731 """
732 Generates a list of initial-config-primitive based on the list provided by the descriptor. It includes internal
733 primitives as verify-ssh-credentials, or config when needed
734 :param desc_primitive_list: information of the descriptor
735 :param vca_deployed: information of the deployed, needed for known if it is related to an NS, VNF, VDU and if
736 this element contains a ssh public key
737 :return: The modified list. Can ba an empty list, but always a list
738 """
739 if desc_primitive_list:
740 primitive_list = desc_primitive_list.copy()
741 else:
742 primitive_list = []
743 # look for primitive config, and get the position. None if not present
744 config_position = None
745 for index, primitive in enumerate(primitive_list):
746 if primitive["name"] == "config":
747 config_position = index
748 break
749
750 # for NS, add always a config primitive if not present (bug 874)
751 if not vca_deployed["member-vnf-index"] and config_position is None:
752 primitive_list.insert(0, {"name": "config", "parameter": []})
753 config_position = 0
754 # for VNF/VDU add verify-ssh-credentials after config
755 if vca_deployed["member-vnf-index"] and config_position is not None and vca_deployed.get("ssh-public-key"):
756 primitive_list.insert(config_position + 1, {"name": "verify-ssh-credentials", "parameter": []})
757 return primitive_list
758
tiernoe876f672020-02-13 14:34:48 +0000759 async def instantiate_RO(self, logging_text, nsr_id, nsd, db_nsr, db_nslcmop, db_vnfrs, db_vnfds_ref,
760 n2vc_key_list, stage):
tiernoe95ed362020-04-23 08:24:57 +0000761 """
762 Instantiate at RO
763 :param logging_text: preffix text to use at logging
764 :param nsr_id: nsr identity
765 :param nsd: database content of ns descriptor
766 :param db_nsr: database content of ns record
767 :param db_nslcmop: database content of ns operation, in this case, 'instantiate'
768 :param db_vnfrs:
769 :param db_vnfds_ref: database content of vnfds, indexed by id (not _id). {id: {vnfd_object}, ...}
770 :param n2vc_key_list: ssh-public-key list to be inserted to management vdus via cloud-init
771 :param stage: list with 3 items: [general stage, tasks, vim_specific]. This task will write over vim_specific
772 :return: None or exception
773 """
tiernoe876f672020-02-13 14:34:48 +0000774 try:
775 db_nsr_update = {}
776 RO_descriptor_number = 0 # number of descriptors created at RO
777 vnf_index_2_RO_id = {} # map between vnfd/nsd id to the id used at RO
778 nslcmop_id = db_nslcmop["_id"]
779 start_deploy = time()
780 ns_params = db_nslcmop.get("operationParams")
781 if ns_params and ns_params.get("timeout_ns_deploy"):
782 timeout_ns_deploy = ns_params["timeout_ns_deploy"]
783 else:
784 timeout_ns_deploy = self.timeout.get("ns_deploy", self.timeout_ns_deploy)
quilesj7e13aeb2019-10-08 13:34:55 +0200785
tiernoe876f672020-02-13 14:34:48 +0000786 # Check for and optionally request placement optimization. Database will be updated if placement activated
787 stage[2] = "Waiting for Placement."
tierno38089af2020-04-16 07:56:58 +0000788 await self._do_placement(logging_text, db_nslcmop, db_vnfrs)
quilesj7e13aeb2019-10-08 13:34:55 +0200789
tiernoe876f672020-02-13 14:34:48 +0000790 # deploy RO
magnussonle9198bb2020-01-21 13:00:51 +0100791
tiernoe876f672020-02-13 14:34:48 +0000792 # get vnfds, instantiate at RO
793 for c_vnf in nsd.get("constituent-vnfd", ()):
794 member_vnf_index = c_vnf["member-vnf-index"]
795 vnfd = db_vnfds_ref[c_vnf['vnfd-id-ref']]
796 vnfd_ref = vnfd["id"]
quilesj7e13aeb2019-10-08 13:34:55 +0200797
tiernoe876f672020-02-13 14:34:48 +0000798 stage[2] = "Creating vnfd='{}' member_vnf_index='{}' at RO".format(vnfd_ref, member_vnf_index)
799 db_nsr_update["detailed-status"] = " ".join(stage)
800 self.update_db_2("nsrs", nsr_id, db_nsr_update)
801 self._write_op_status(nslcmop_id, stage)
calvinosanch9f9c6f22019-11-04 13:37:39 +0100802
tiernoe876f672020-02-13 14:34:48 +0000803 # self.logger.debug(logging_text + stage[2])
804 vnfd_id_RO = "{}.{}.{}".format(nsr_id, RO_descriptor_number, member_vnf_index[:23])
805 vnf_index_2_RO_id[member_vnf_index] = vnfd_id_RO
806 RO_descriptor_number += 1
807
808 # look position at deployed.RO.vnfd if not present it will be appended at the end
809 for index, vnf_deployed in enumerate(db_nsr["_admin"]["deployed"]["RO"]["vnfd"]):
810 if vnf_deployed["member-vnf-index"] == member_vnf_index:
811 break
812 else:
813 index = len(db_nsr["_admin"]["deployed"]["RO"]["vnfd"])
814 db_nsr["_admin"]["deployed"]["RO"]["vnfd"].append(None)
815
816 # look if present
817 RO_update = {"member-vnf-index": member_vnf_index}
818 vnfd_list = await self.RO.get_list("vnfd", filter_by={"osm_id": vnfd_id_RO})
819 if vnfd_list:
820 RO_update["id"] = vnfd_list[0]["uuid"]
821 self.logger.debug(logging_text + "vnfd='{}' member_vnf_index='{}' exists at RO. Using RO_id={}".
822 format(vnfd_ref, member_vnf_index, vnfd_list[0]["uuid"]))
823 else:
824 vnfd_RO = self.vnfd2RO(vnfd, vnfd_id_RO, db_vnfrs[c_vnf["member-vnf-index"]].
825 get("additionalParamsForVnf"), nsr_id)
826 desc = await self.RO.create("vnfd", descriptor=vnfd_RO)
827 RO_update["id"] = desc["uuid"]
828 self.logger.debug(logging_text + "vnfd='{}' member_vnf_index='{}' created at RO. RO_id={}".format(
829 vnfd_ref, member_vnf_index, desc["uuid"]))
830 db_nsr_update["_admin.deployed.RO.vnfd.{}".format(index)] = RO_update
831 db_nsr["_admin"]["deployed"]["RO"]["vnfd"][index] = RO_update
832
833 # create nsd at RO
834 nsd_ref = nsd["id"]
835
836 stage[2] = "Creating nsd={} at RO".format(nsd_ref)
837 db_nsr_update["detailed-status"] = " ".join(stage)
838 self.update_db_2("nsrs", nsr_id, db_nsr_update)
839 self._write_op_status(nslcmop_id, stage)
840
841 # self.logger.debug(logging_text + stage[2])
842 RO_osm_nsd_id = "{}.{}.{}".format(nsr_id, RO_descriptor_number, nsd_ref[:23])
tiernod8323042019-08-09 11:32:23 +0000843 RO_descriptor_number += 1
tiernoe876f672020-02-13 14:34:48 +0000844 nsd_list = await self.RO.get_list("nsd", filter_by={"osm_id": RO_osm_nsd_id})
845 if nsd_list:
846 db_nsr_update["_admin.deployed.RO.nsd_id"] = RO_nsd_uuid = nsd_list[0]["uuid"]
847 self.logger.debug(logging_text + "nsd={} exists at RO. Using RO_id={}".format(
848 nsd_ref, RO_nsd_uuid))
tiernod8323042019-08-09 11:32:23 +0000849 else:
tiernoe876f672020-02-13 14:34:48 +0000850 nsd_RO = deepcopy(nsd)
851 nsd_RO["id"] = RO_osm_nsd_id
852 nsd_RO.pop("_id", None)
853 nsd_RO.pop("_admin", None)
854 for c_vnf in nsd_RO.get("constituent-vnfd", ()):
855 member_vnf_index = c_vnf["member-vnf-index"]
856 c_vnf["vnfd-id-ref"] = vnf_index_2_RO_id[member_vnf_index]
857 for c_vld in nsd_RO.get("vld", ()):
858 for cp in c_vld.get("vnfd-connection-point-ref", ()):
859 member_vnf_index = cp["member-vnf-index-ref"]
860 cp["vnfd-id-ref"] = vnf_index_2_RO_id[member_vnf_index]
tiernod8323042019-08-09 11:32:23 +0000861
tiernoe876f672020-02-13 14:34:48 +0000862 desc = await self.RO.create("nsd", descriptor=nsd_RO)
863 db_nsr_update["_admin.nsState"] = "INSTANTIATED"
864 db_nsr_update["_admin.deployed.RO.nsd_id"] = RO_nsd_uuid = desc["uuid"]
865 self.logger.debug(logging_text + "nsd={} created at RO. RO_id={}".format(nsd_ref, RO_nsd_uuid))
tiernod8323042019-08-09 11:32:23 +0000866 self.update_db_2("nsrs", nsr_id, db_nsr_update)
867
tiernoe876f672020-02-13 14:34:48 +0000868 # Crate ns at RO
869 stage[2] = "Creating nsd={} at RO".format(nsd_ref)
870 db_nsr_update["detailed-status"] = " ".join(stage)
871 self.update_db_2("nsrs", nsr_id, db_nsr_update)
872 self._write_op_status(nslcmop_id, stage)
tiernod8323042019-08-09 11:32:23 +0000873
tiernoe876f672020-02-13 14:34:48 +0000874 # if present use it unless in error status
875 RO_nsr_id = deep_get(db_nsr, ("_admin", "deployed", "RO", "nsr_id"))
876 if RO_nsr_id:
877 try:
878 stage[2] = "Looking for existing ns at RO"
879 db_nsr_update["detailed-status"] = " ".join(stage)
880 self.update_db_2("nsrs", nsr_id, db_nsr_update)
881 self._write_op_status(nslcmop_id, stage)
882 # self.logger.debug(logging_text + stage[2] + " RO_ns_id={}".format(RO_nsr_id))
883 desc = await self.RO.show("ns", RO_nsr_id)
tiernod8323042019-08-09 11:32:23 +0000884
tiernoe876f672020-02-13 14:34:48 +0000885 except ROclient.ROClientException as e:
886 if e.http_code != HTTPStatus.NOT_FOUND:
887 raise
888 RO_nsr_id = db_nsr_update["_admin.deployed.RO.nsr_id"] = None
889 if RO_nsr_id:
890 ns_status, ns_status_info = self.RO.check_ns_status(desc)
891 db_nsr_update["_admin.deployed.RO.nsr_status"] = ns_status
892 if ns_status == "ERROR":
893 stage[2] = "Deleting ns at RO. RO_ns_id={}".format(RO_nsr_id)
894 self.logger.debug(logging_text + stage[2])
895 await self.RO.delete("ns", RO_nsr_id)
896 RO_nsr_id = db_nsr_update["_admin.deployed.RO.nsr_id"] = None
897 if not RO_nsr_id:
898 stage[2] = "Checking dependencies"
899 db_nsr_update["detailed-status"] = " ".join(stage)
900 self.update_db_2("nsrs", nsr_id, db_nsr_update)
901 self._write_op_status(nslcmop_id, stage)
902 # self.logger.debug(logging_text + stage[2])
tiernod8323042019-08-09 11:32:23 +0000903
tiernoe876f672020-02-13 14:34:48 +0000904 # check if VIM is creating and wait look if previous tasks in process
905 task_name, task_dependency = self.lcm_tasks.lookfor_related("vim_account", ns_params["vimAccountId"])
906 if task_dependency:
907 stage[2] = "Waiting for related tasks '{}' to be completed".format(task_name)
908 self.logger.debug(logging_text + stage[2])
909 await asyncio.wait(task_dependency, timeout=3600)
910 if ns_params.get("vnf"):
911 for vnf in ns_params["vnf"]:
912 if "vimAccountId" in vnf:
913 task_name, task_dependency = self.lcm_tasks.lookfor_related("vim_account",
914 vnf["vimAccountId"])
915 if task_dependency:
916 stage[2] = "Waiting for related tasks '{}' to be completed.".format(task_name)
917 self.logger.debug(logging_text + stage[2])
918 await asyncio.wait(task_dependency, timeout=3600)
919
920 stage[2] = "Checking instantiation parameters."
tiernoe95ed362020-04-23 08:24:57 +0000921 RO_ns_params = self._ns_params_2_RO(ns_params, nsd, db_vnfds_ref, db_vnfrs, n2vc_key_list)
tiernoe876f672020-02-13 14:34:48 +0000922 stage[2] = "Deploying ns at VIM."
923 db_nsr_update["detailed-status"] = " ".join(stage)
924 self.update_db_2("nsrs", nsr_id, db_nsr_update)
925 self._write_op_status(nslcmop_id, stage)
926
927 desc = await self.RO.create("ns", descriptor=RO_ns_params, name=db_nsr["name"], scenario=RO_nsd_uuid)
928 RO_nsr_id = db_nsr_update["_admin.deployed.RO.nsr_id"] = desc["uuid"]
929 db_nsr_update["_admin.nsState"] = "INSTANTIATED"
930 db_nsr_update["_admin.deployed.RO.nsr_status"] = "BUILD"
931 self.logger.debug(logging_text + "ns created at RO. RO_id={}".format(desc["uuid"]))
932
933 # wait until NS is ready
934 stage[2] = "Waiting VIM to deploy ns."
935 db_nsr_update["detailed-status"] = " ".join(stage)
936 self.update_db_2("nsrs", nsr_id, db_nsr_update)
937 self._write_op_status(nslcmop_id, stage)
938 detailed_status_old = None
939 self.logger.debug(logging_text + stage[2] + " RO_ns_id={}".format(RO_nsr_id))
940
941 old_desc = None
942 while time() <= start_deploy + timeout_ns_deploy:
tiernod8323042019-08-09 11:32:23 +0000943 desc = await self.RO.show("ns", RO_nsr_id)
quilesj3655ae02019-12-12 16:08:35 +0000944
tiernoe876f672020-02-13 14:34:48 +0000945 # deploymentStatus
946 if desc != old_desc:
947 # desc has changed => update db
948 self._on_update_ro_db(nsrs_id=nsr_id, ro_descriptor=desc)
949 old_desc = desc
tiernod8323042019-08-09 11:32:23 +0000950
tiernoe876f672020-02-13 14:34:48 +0000951 ns_status, ns_status_info = self.RO.check_ns_status(desc)
952 db_nsr_update["_admin.deployed.RO.nsr_status"] = ns_status
953 if ns_status == "ERROR":
954 raise ROclient.ROClientException(ns_status_info)
955 elif ns_status == "BUILD":
956 stage[2] = "VIM: ({})".format(ns_status_info)
957 elif ns_status == "ACTIVE":
958 stage[2] = "Waiting for management IP address reported by the VIM. Updating VNFRs."
959 try:
960 self.ns_update_vnfr(db_vnfrs, desc)
961 break
962 except LcmExceptionNoMgmtIP:
963 pass
964 else:
965 assert False, "ROclient.check_ns_status returns unknown {}".format(ns_status)
966 if stage[2] != detailed_status_old:
967 detailed_status_old = stage[2]
968 db_nsr_update["detailed-status"] = " ".join(stage)
969 self.update_db_2("nsrs", nsr_id, db_nsr_update)
970 self._write_op_status(nslcmop_id, stage)
971 await asyncio.sleep(5, loop=self.loop)
972 else: # timeout_ns_deploy
973 raise ROclient.ROClientException("Timeout waiting ns to be ready")
tiernod8323042019-08-09 11:32:23 +0000974
tiernoe876f672020-02-13 14:34:48 +0000975 # Updating NSR
976 self.ns_update_nsr(db_nsr_update, db_nsr, desc)
tiernod8323042019-08-09 11:32:23 +0000977
tiernoe876f672020-02-13 14:34:48 +0000978 db_nsr_update["_admin.deployed.RO.operational-status"] = "running"
979 # db_nsr["_admin.deployed.RO.detailed-status"] = "Deployed at VIM"
980 stage[2] = "Deployed at VIM"
981 db_nsr_update["detailed-status"] = " ".join(stage)
982 self.update_db_2("nsrs", nsr_id, db_nsr_update)
983 self._write_op_status(nslcmop_id, stage)
984 # await self._on_update_n2vc_db("nsrs", {"_id": nsr_id}, "_admin.deployed", db_nsr_update)
985 # self.logger.debug(logging_text + "Deployed at VIM")
986 except (ROclient.ROClientException, LcmException, DbException) as e:
tierno067e04a2020-03-31 12:53:13 +0000987 stage[2] = "ERROR deploying at VIM"
tiernoe876f672020-02-13 14:34:48 +0000988 self.set_vnfr_at_error(db_vnfrs, str(e))
989 raise
quilesj7e13aeb2019-10-08 13:34:55 +0200990
tiernoa5088192019-11-26 16:12:53 +0000991 async def wait_vm_up_insert_key_ro(self, logging_text, nsr_id, vnfr_id, vdu_id, vdu_index, pub_key=None, user=None):
992 """
993 Wait for ip addres at RO, and optionally, insert public key in virtual machine
994 :param logging_text: prefix use for logging
995 :param nsr_id:
996 :param vnfr_id:
997 :param vdu_id:
998 :param vdu_index:
999 :param pub_key: public ssh key to inject, None to skip
1000 :param user: user to apply the public ssh key
1001 :return: IP address
1002 """
quilesj7e13aeb2019-10-08 13:34:55 +02001003
tiernoa5088192019-11-26 16:12:53 +00001004 # self.logger.debug(logging_text + "Starting wait_vm_up_insert_key_ro")
tiernod8323042019-08-09 11:32:23 +00001005 ro_nsr_id = None
1006 ip_address = None
1007 nb_tries = 0
1008 target_vdu_id = None
quilesj3149f262019-12-03 10:58:10 +00001009 ro_retries = 0
quilesj7e13aeb2019-10-08 13:34:55 +02001010
tiernod8323042019-08-09 11:32:23 +00001011 while True:
quilesj7e13aeb2019-10-08 13:34:55 +02001012
quilesj3149f262019-12-03 10:58:10 +00001013 ro_retries += 1
1014 if ro_retries >= 360: # 1 hour
1015 raise LcmException("Not found _admin.deployed.RO.nsr_id for nsr_id: {}".format(nsr_id))
1016
tiernod8323042019-08-09 11:32:23 +00001017 await asyncio.sleep(10, loop=self.loop)
quilesj7e13aeb2019-10-08 13:34:55 +02001018
1019 # get ip address
tiernod8323042019-08-09 11:32:23 +00001020 if not target_vdu_id:
1021 db_vnfr = self.db.get_one("vnfrs", {"_id": vnfr_id})
quilesj3149f262019-12-03 10:58:10 +00001022
1023 if not vdu_id: # for the VNF case
tiernoe876f672020-02-13 14:34:48 +00001024 if db_vnfr.get("status") == "ERROR":
1025 raise LcmException("Cannot inject ssh-key because target VNF is in error state")
tiernod8323042019-08-09 11:32:23 +00001026 ip_address = db_vnfr.get("ip-address")
1027 if not ip_address:
1028 continue
quilesj3149f262019-12-03 10:58:10 +00001029 vdur = next((x for x in get_iterable(db_vnfr, "vdur") if x.get("ip-address") == ip_address), None)
1030 else: # VDU case
1031 vdur = next((x for x in get_iterable(db_vnfr, "vdur")
1032 if x.get("vdu-id-ref") == vdu_id and x.get("count-index") == vdu_index), None)
1033
tierno0e8c3f02020-03-12 17:18:21 +00001034 if not vdur and len(db_vnfr.get("vdur", ())) == 1: # If only one, this should be the target vdu
1035 vdur = db_vnfr["vdur"][0]
quilesj3149f262019-12-03 10:58:10 +00001036 if not vdur:
tierno0e8c3f02020-03-12 17:18:21 +00001037 raise LcmException("Not found vnfr_id={}, vdu_id={}, vdu_index={}".format(vnfr_id, vdu_id,
1038 vdu_index))
quilesj7e13aeb2019-10-08 13:34:55 +02001039
tierno0e8c3f02020-03-12 17:18:21 +00001040 if vdur.get("pdu-type") or vdur.get("status") == "ACTIVE":
quilesj3149f262019-12-03 10:58:10 +00001041 ip_address = vdur.get("ip-address")
1042 if not ip_address:
1043 continue
1044 target_vdu_id = vdur["vdu-id-ref"]
1045 elif vdur.get("status") == "ERROR":
1046 raise LcmException("Cannot inject ssh-key because target VM is in error state")
1047
tiernod8323042019-08-09 11:32:23 +00001048 if not target_vdu_id:
1049 continue
tiernod8323042019-08-09 11:32:23 +00001050
quilesj7e13aeb2019-10-08 13:34:55 +02001051 # inject public key into machine
1052 if pub_key and user:
tiernoe876f672020-02-13 14:34:48 +00001053 # wait until NS is deployed at RO
1054 if not ro_nsr_id:
1055 db_nsrs = self.db.get_one("nsrs", {"_id": nsr_id})
1056 ro_nsr_id = deep_get(db_nsrs, ("_admin", "deployed", "RO", "nsr_id"))
1057 if not ro_nsr_id:
1058 continue
1059
tiernoa5088192019-11-26 16:12:53 +00001060 # self.logger.debug(logging_text + "Inserting RO key")
tierno0e8c3f02020-03-12 17:18:21 +00001061 if vdur.get("pdu-type"):
1062 self.logger.error(logging_text + "Cannot inject ssh-ky to a PDU")
1063 return ip_address
quilesj7e13aeb2019-10-08 13:34:55 +02001064 try:
1065 ro_vm_id = "{}-{}".format(db_vnfr["member-vnf-index-ref"], target_vdu_id) # TODO add vdu_index
1066 result_dict = await self.RO.create_action(
1067 item="ns",
1068 item_id_name=ro_nsr_id,
1069 descriptor={"add_public_key": pub_key, "vms": [ro_vm_id], "user": user}
1070 )
1071 # result_dict contains the format {VM-id: {vim_result: 200, description: text}}
1072 if not result_dict or not isinstance(result_dict, dict):
1073 raise LcmException("Unknown response from RO when injecting key")
1074 for result in result_dict.values():
1075 if result.get("vim_result") == 200:
1076 break
1077 else:
1078 raise ROclient.ROClientException("error injecting key: {}".format(
1079 result.get("description")))
1080 break
1081 except ROclient.ROClientException as e:
tiernoa5088192019-11-26 16:12:53 +00001082 if not nb_tries:
1083 self.logger.debug(logging_text + "error injecting key: {}. Retrying until {} seconds".
1084 format(e, 20*10))
quilesj7e13aeb2019-10-08 13:34:55 +02001085 nb_tries += 1
tiernoa5088192019-11-26 16:12:53 +00001086 if nb_tries >= 20:
quilesj7e13aeb2019-10-08 13:34:55 +02001087 raise LcmException("Reaching max tries injecting key. Error: {}".format(e))
quilesj7e13aeb2019-10-08 13:34:55 +02001088 else:
quilesj7e13aeb2019-10-08 13:34:55 +02001089 break
1090
1091 return ip_address
1092
tierno5ee02052019-12-05 19:55:02 +00001093 async def _wait_dependent_n2vc(self, nsr_id, vca_deployed_list, vca_index):
1094 """
1095 Wait until dependent VCA deployments have been finished. NS wait for VNFs and VDUs. VNFs for VDUs
1096 """
1097 my_vca = vca_deployed_list[vca_index]
1098 if my_vca.get("vdu_id") or my_vca.get("kdu_name"):
quilesj3655ae02019-12-12 16:08:35 +00001099 # vdu or kdu: no dependencies
tierno5ee02052019-12-05 19:55:02 +00001100 return
1101 timeout = 300
1102 while timeout >= 0:
quilesj3655ae02019-12-12 16:08:35 +00001103 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
1104 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
1105 configuration_status_list = db_nsr["configurationStatus"]
1106 for index, vca_deployed in enumerate(configuration_status_list):
tierno5ee02052019-12-05 19:55:02 +00001107 if index == vca_index:
quilesj3655ae02019-12-12 16:08:35 +00001108 # myself
tierno5ee02052019-12-05 19:55:02 +00001109 continue
1110 if not my_vca.get("member-vnf-index") or \
1111 (vca_deployed.get("member-vnf-index") == my_vca.get("member-vnf-index")):
quilesj3655ae02019-12-12 16:08:35 +00001112 internal_status = configuration_status_list[index].get("status")
1113 if internal_status == 'READY':
1114 continue
1115 elif internal_status == 'BROKEN':
tierno5ee02052019-12-05 19:55:02 +00001116 raise LcmException("Configuration aborted because dependent charm/s has failed")
quilesj3655ae02019-12-12 16:08:35 +00001117 else:
1118 break
tierno5ee02052019-12-05 19:55:02 +00001119 else:
quilesj3655ae02019-12-12 16:08:35 +00001120 # no dependencies, return
tierno5ee02052019-12-05 19:55:02 +00001121 return
1122 await asyncio.sleep(10)
1123 timeout -= 1
tierno5ee02052019-12-05 19:55:02 +00001124
1125 raise LcmException("Configuration aborted because dependent charm/s timeout")
1126
tiernoe876f672020-02-13 14:34:48 +00001127 async def instantiate_N2VC(self, logging_text, vca_index, nsi_id, db_nsr, db_vnfr, vdu_id, kdu_name, vdu_index,
1128 config_descriptor, deploy_params, base_folder, nslcmop_id, stage):
tiernod8323042019-08-09 11:32:23 +00001129 nsr_id = db_nsr["_id"]
1130 db_update_entry = "_admin.deployed.VCA.{}.".format(vca_index)
tiernoda6fb102019-11-23 00:36:52 +00001131 vca_deployed_list = db_nsr["_admin"]["deployed"]["VCA"]
tiernod8323042019-08-09 11:32:23 +00001132 vca_deployed = db_nsr["_admin"]["deployed"]["VCA"][vca_index]
quilesj7e13aeb2019-10-08 13:34:55 +02001133 db_dict = {
1134 'collection': 'nsrs',
1135 'filter': {'_id': nsr_id},
1136 'path': db_update_entry
1137 }
tiernod8323042019-08-09 11:32:23 +00001138 step = ""
1139 try:
quilesj3655ae02019-12-12 16:08:35 +00001140
1141 element_type = 'NS'
1142 element_under_configuration = nsr_id
1143
tiernod8323042019-08-09 11:32:23 +00001144 vnfr_id = None
1145 if db_vnfr:
1146 vnfr_id = db_vnfr["_id"]
1147
1148 namespace = "{nsi}.{ns}".format(
1149 nsi=nsi_id if nsi_id else "",
1150 ns=nsr_id)
quilesj3655ae02019-12-12 16:08:35 +00001151
tiernod8323042019-08-09 11:32:23 +00001152 if vnfr_id:
quilesj3655ae02019-12-12 16:08:35 +00001153 element_type = 'VNF'
1154 element_under_configuration = vnfr_id
quilesjb8a35dd2020-01-09 15:10:14 +00001155 namespace += ".{}".format(vnfr_id)
tiernod8323042019-08-09 11:32:23 +00001156 if vdu_id:
1157 namespace += ".{}-{}".format(vdu_id, vdu_index or 0)
quilesj3655ae02019-12-12 16:08:35 +00001158 element_type = 'VDU'
quilesjb8a35dd2020-01-09 15:10:14 +00001159 element_under_configuration = "{}-{}".format(vdu_id, vdu_index or 0)
tierno51183952020-04-03 15:48:18 +00001160 elif kdu_name:
1161 namespace += ".{}".format(kdu_name)
1162 element_type = 'KDU'
1163 element_under_configuration = kdu_name
tiernod8323042019-08-09 11:32:23 +00001164
1165 # Get artifact path
David Garcia56522772020-01-20 13:19:29 +01001166 self.fs.sync() # Sync from FSMongo
David Garcia485b2912019-12-04 14:01:50 +01001167 artifact_path = "{}/{}/charms/{}".format(
tiernod8323042019-08-09 11:32:23 +00001168 base_folder["folder"],
1169 base_folder["pkg-dir"],
1170 config_descriptor["juju"]["charm"]
1171 )
1172
quilesj7e13aeb2019-10-08 13:34:55 +02001173 is_proxy_charm = deep_get(config_descriptor, ('juju', 'charm')) is not None
1174 if deep_get(config_descriptor, ('juju', 'proxy')) is False:
tiernod8323042019-08-09 11:32:23 +00001175 is_proxy_charm = False
1176
1177 # n2vc_redesign STEP 3.1
quilesj7e13aeb2019-10-08 13:34:55 +02001178
1179 # find old ee_id if exists
tiernod8323042019-08-09 11:32:23 +00001180 ee_id = vca_deployed.get("ee_id")
tiernod8323042019-08-09 11:32:23 +00001181
quilesj7e13aeb2019-10-08 13:34:55 +02001182 # create or register execution environment in VCA
1183 if is_proxy_charm:
quilesj3655ae02019-12-12 16:08:35 +00001184
tiernoc231a872020-01-21 08:49:05 +00001185 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001186 nsr_id=nsr_id,
1187 vca_index=vca_index,
1188 status='CREATING',
1189 element_under_configuration=element_under_configuration,
1190 element_type=element_type
1191 )
1192
quilesj7e13aeb2019-10-08 13:34:55 +02001193 step = "create execution environment"
1194 self.logger.debug(logging_text + step)
tierno3bedc9b2019-11-27 15:46:57 +00001195 ee_id, credentials = await self.n2vc.create_execution_environment(namespace=namespace,
1196 reuse_ee_id=ee_id,
1197 db_dict=db_dict)
quilesj3655ae02019-12-12 16:08:35 +00001198
quilesj7e13aeb2019-10-08 13:34:55 +02001199 else:
tierno3bedc9b2019-11-27 15:46:57 +00001200 step = "Waiting to VM being up and getting IP address"
1201 self.logger.debug(logging_text + step)
1202 rw_mgmt_ip = await self.wait_vm_up_insert_key_ro(logging_text, nsr_id, vnfr_id, vdu_id, vdu_index,
1203 user=None, pub_key=None)
1204 credentials = {"hostname": rw_mgmt_ip}
quilesj7e13aeb2019-10-08 13:34:55 +02001205 # get username
tierno3bedc9b2019-11-27 15:46:57 +00001206 username = deep_get(config_descriptor, ("config-access", "ssh-access", "default-user"))
quilesj7e13aeb2019-10-08 13:34:55 +02001207 # TODO remove this when changes on IM regarding config-access:ssh-access:default-user were
1208 # merged. Meanwhile let's get username from initial-config-primitive
tierno3bedc9b2019-11-27 15:46:57 +00001209 if not username and config_descriptor.get("initial-config-primitive"):
1210 for config_primitive in config_descriptor["initial-config-primitive"]:
1211 for param in config_primitive.get("parameter", ()):
1212 if param["name"] == "ssh-username":
1213 username = param["value"]
1214 break
1215 if not username:
1216 raise LcmException("Cannot determine the username neither with 'initial-config-promitive' nor with "
1217 "'config-access.ssh-access.default-user'")
1218 credentials["username"] = username
quilesj7e13aeb2019-10-08 13:34:55 +02001219 # n2vc_redesign STEP 3.2
tierno3bedc9b2019-11-27 15:46:57 +00001220
tiernoc231a872020-01-21 08:49:05 +00001221 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001222 nsr_id=nsr_id,
1223 vca_index=vca_index,
1224 status='REGISTERING',
1225 element_under_configuration=element_under_configuration,
1226 element_type=element_type
1227 )
1228
tierno3bedc9b2019-11-27 15:46:57 +00001229 step = "register execution environment {}".format(credentials)
quilesj7e13aeb2019-10-08 13:34:55 +02001230 self.logger.debug(logging_text + step)
tierno3bedc9b2019-11-27 15:46:57 +00001231 ee_id = await self.n2vc.register_execution_environment(credentials=credentials, namespace=namespace,
1232 db_dict=db_dict)
quilesj7e13aeb2019-10-08 13:34:55 +02001233
1234 # for compatibility with MON/POL modules, the need model and application name at database
1235 # TODO ask to N2VC instead of assuming the format "model_name.application_name"
1236 ee_id_parts = ee_id.split('.')
1237 model_name = ee_id_parts[0]
1238 application_name = ee_id_parts[1]
tierno51183952020-04-03 15:48:18 +00001239 db_nsr_update = {db_update_entry + "model": model_name,
1240 db_update_entry + "application": application_name,
1241 db_update_entry + "ee_id": ee_id}
tiernod8323042019-08-09 11:32:23 +00001242
1243 # n2vc_redesign STEP 3.3
tierno3bedc9b2019-11-27 15:46:57 +00001244
tiernod8323042019-08-09 11:32:23 +00001245 step = "Install configuration Software"
quilesj3655ae02019-12-12 16:08:35 +00001246
tiernoc231a872020-01-21 08:49:05 +00001247 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001248 nsr_id=nsr_id,
1249 vca_index=vca_index,
1250 status='INSTALLING SW',
1251 element_under_configuration=element_under_configuration,
tierno51183952020-04-03 15:48:18 +00001252 element_type=element_type,
1253 other_update=db_nsr_update
quilesj3655ae02019-12-12 16:08:35 +00001254 )
1255
tierno3bedc9b2019-11-27 15:46:57 +00001256 # TODO check if already done
quilesj7e13aeb2019-10-08 13:34:55 +02001257 self.logger.debug(logging_text + step)
David Garcia18a63322020-04-01 16:14:59 +02001258 config = None
1259 if not is_proxy_charm:
1260 initial_config_primitive_list = config_descriptor.get('initial-config-primitive')
1261 if initial_config_primitive_list:
1262 for primitive in initial_config_primitive_list:
1263 if primitive["name"] == "config":
1264 config = self._map_primitive_params(
1265 primitive,
1266 {},
1267 deploy_params
1268 )
1269 break
1270 await self.n2vc.install_configuration_sw(
1271 ee_id=ee_id,
1272 artifact_path=artifact_path,
1273 db_dict=db_dict,
1274 config=config
1275 )
quilesj7e13aeb2019-10-08 13:34:55 +02001276
quilesj63f90042020-01-17 09:53:55 +00001277 # write in db flag of configuration_sw already installed
1278 self.update_db_2("nsrs", nsr_id, {db_update_entry + "config_sw_installed": True})
1279
1280 # add relations for this VCA (wait for other peers related with this VCA)
1281 await self._add_vca_relations(logging_text=logging_text, nsr_id=nsr_id, vca_index=vca_index)
1282
quilesj7e13aeb2019-10-08 13:34:55 +02001283 # if SSH access is required, then get execution environment SSH public
tierno3bedc9b2019-11-27 15:46:57 +00001284 if is_proxy_charm: # if native charm we have waited already to VM be UP
1285 pub_key = None
1286 user = None
1287 if deep_get(config_descriptor, ("config-access", "ssh-access", "required")):
1288 # Needed to inject a ssh key
1289 user = deep_get(config_descriptor, ("config-access", "ssh-access", "default-user"))
1290 step = "Install configuration Software, getting public ssh key"
1291 pub_key = await self.n2vc.get_ee_ssh_public__key(ee_id=ee_id, db_dict=db_dict)
quilesj7e13aeb2019-10-08 13:34:55 +02001292
tiernoacc90452019-12-10 11:06:54 +00001293 step = "Insert public key into VM user={} ssh_key={}".format(user, pub_key)
tierno3bedc9b2019-11-27 15:46:57 +00001294 else:
1295 step = "Waiting to VM being up and getting IP address"
1296 self.logger.debug(logging_text + step)
quilesj7e13aeb2019-10-08 13:34:55 +02001297
tierno3bedc9b2019-11-27 15:46:57 +00001298 # n2vc_redesign STEP 5.1
1299 # wait for RO (ip-address) Insert pub_key into VM
tierno5ee02052019-12-05 19:55:02 +00001300 if vnfr_id:
1301 rw_mgmt_ip = await self.wait_vm_up_insert_key_ro(logging_text, nsr_id, vnfr_id, vdu_id, vdu_index,
1302 user=user, pub_key=pub_key)
1303 else:
1304 rw_mgmt_ip = None # This is for a NS configuration
tierno3bedc9b2019-11-27 15:46:57 +00001305
1306 self.logger.debug(logging_text + ' VM_ip_address={}'.format(rw_mgmt_ip))
quilesj7e13aeb2019-10-08 13:34:55 +02001307
tiernoa5088192019-11-26 16:12:53 +00001308 # store rw_mgmt_ip in deploy params for later replacement
quilesj7e13aeb2019-10-08 13:34:55 +02001309 deploy_params["rw_mgmt_ip"] = rw_mgmt_ip
tiernod8323042019-08-09 11:32:23 +00001310
1311 # n2vc_redesign STEP 6 Execute initial config primitive
quilesj7e13aeb2019-10-08 13:34:55 +02001312 step = 'execute initial config primitive'
tiernoa5088192019-11-26 16:12:53 +00001313 initial_config_primitive_list = config_descriptor.get('initial-config-primitive')
quilesj7e13aeb2019-10-08 13:34:55 +02001314
1315 # sort initial config primitives by 'seq'
quilesj63f90042020-01-17 09:53:55 +00001316 if initial_config_primitive_list:
1317 try:
1318 initial_config_primitive_list.sort(key=lambda val: int(val['seq']))
1319 except Exception as e:
1320 self.logger.error(logging_text + step + ": " + str(e))
1321 else:
1322 self.logger.debug(logging_text + step + ": No initial-config-primitive")
quilesj7e13aeb2019-10-08 13:34:55 +02001323
tiernoda6fb102019-11-23 00:36:52 +00001324 # add config if not present for NS charm
1325 initial_config_primitive_list = self._get_initial_config_primitive_list(initial_config_primitive_list,
1326 vca_deployed)
quilesj3655ae02019-12-12 16:08:35 +00001327
1328 # wait for dependent primitives execution (NS -> VNF -> VDU)
tierno5ee02052019-12-05 19:55:02 +00001329 if initial_config_primitive_list:
1330 await self._wait_dependent_n2vc(nsr_id, vca_deployed_list, vca_index)
quilesj3655ae02019-12-12 16:08:35 +00001331
1332 # stage, in function of element type: vdu, kdu, vnf or ns
1333 my_vca = vca_deployed_list[vca_index]
1334 if my_vca.get("vdu_id") or my_vca.get("kdu_name"):
1335 # VDU or KDU
tiernoe876f672020-02-13 14:34:48 +00001336 stage[0] = 'Stage 3/5: running Day-1 primitives for VDU.'
quilesj3655ae02019-12-12 16:08:35 +00001337 elif my_vca.get("member-vnf-index"):
1338 # VNF
tiernoe876f672020-02-13 14:34:48 +00001339 stage[0] = 'Stage 4/5: running Day-1 primitives for VNF.'
quilesj3655ae02019-12-12 16:08:35 +00001340 else:
1341 # NS
tiernoe876f672020-02-13 14:34:48 +00001342 stage[0] = 'Stage 5/5: running Day-1 primitives for NS.'
quilesj3655ae02019-12-12 16:08:35 +00001343
tiernoc231a872020-01-21 08:49:05 +00001344 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001345 nsr_id=nsr_id,
1346 vca_index=vca_index,
1347 status='EXECUTING PRIMITIVE'
1348 )
1349
1350 self._write_op_status(
1351 op_id=nslcmop_id,
1352 stage=stage
1353 )
1354
tiernoe876f672020-02-13 14:34:48 +00001355 check_if_terminated_needed = True
tiernod8323042019-08-09 11:32:23 +00001356 for initial_config_primitive in initial_config_primitive_list:
tiernoda6fb102019-11-23 00:36:52 +00001357 # adding information on the vca_deployed if it is a NS execution environment
1358 if not vca_deployed["member-vnf-index"]:
David Garciad4816682019-12-09 14:57:43 +01001359 deploy_params["ns_config_info"] = json.dumps(self._get_ns_config_info(nsr_id))
tiernod8323042019-08-09 11:32:23 +00001360 # TODO check if already done
1361 primitive_params_ = self._map_primitive_params(initial_config_primitive, {}, deploy_params)
tierno3bedc9b2019-11-27 15:46:57 +00001362
tiernod8323042019-08-09 11:32:23 +00001363 step = "execute primitive '{}' params '{}'".format(initial_config_primitive["name"], primitive_params_)
1364 self.logger.debug(logging_text + step)
quilesj7e13aeb2019-10-08 13:34:55 +02001365 await self.n2vc.exec_primitive(
1366 ee_id=ee_id,
1367 primitive_name=initial_config_primitive["name"],
1368 params_dict=primitive_params_,
1369 db_dict=db_dict
1370 )
tiernoe876f672020-02-13 14:34:48 +00001371 # Once some primitive has been exec, check and write at db if it needs to exec terminated primitives
1372 if check_if_terminated_needed:
1373 if config_descriptor.get('terminate-config-primitive'):
1374 self.update_db_2("nsrs", nsr_id, {db_update_entry + "needed_terminate": True})
1375 check_if_terminated_needed = False
quilesj3655ae02019-12-12 16:08:35 +00001376
tiernod8323042019-08-09 11:32:23 +00001377 # TODO register in database that primitive is done
quilesj7e13aeb2019-10-08 13:34:55 +02001378
1379 step = "instantiated at VCA"
1380 self.logger.debug(logging_text + step)
1381
tiernoc231a872020-01-21 08:49:05 +00001382 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001383 nsr_id=nsr_id,
1384 vca_index=vca_index,
1385 status='READY'
1386 )
1387
tiernod8323042019-08-09 11:32:23 +00001388 except Exception as e: # TODO not use Exception but N2VC exception
quilesj3655ae02019-12-12 16:08:35 +00001389 # self.update_db_2("nsrs", nsr_id, {db_update_entry + "instantiation": "FAILED"})
tiernoe876f672020-02-13 14:34:48 +00001390 if not isinstance(e, (DbException, N2VCException, LcmException, asyncio.CancelledError)):
1391 self.logger.error("Exception while {} : {}".format(step, e), exc_info=True)
tiernoc231a872020-01-21 08:49:05 +00001392 self._write_configuration_status(
quilesj3655ae02019-12-12 16:08:35 +00001393 nsr_id=nsr_id,
1394 vca_index=vca_index,
1395 status='BROKEN'
1396 )
tiernoe876f672020-02-13 14:34:48 +00001397 raise LcmException("{} {}".format(step, e)) from e
tiernod8323042019-08-09 11:32:23 +00001398
quilesj4cda56b2019-12-05 10:02:20 +00001399 def _write_ns_status(self, nsr_id: str, ns_state: str, current_operation: str, current_operation_id: str,
tiernoa2143262020-03-27 16:20:40 +00001400 error_description: str = None, error_detail: str = None, other_update: dict = None):
tiernoe876f672020-02-13 14:34:48 +00001401 """
1402 Update db_nsr fields.
1403 :param nsr_id:
1404 :param ns_state:
1405 :param current_operation:
1406 :param current_operation_id:
1407 :param error_description:
tiernoa2143262020-03-27 16:20:40 +00001408 :param error_detail:
tiernoe876f672020-02-13 14:34:48 +00001409 :param other_update: Other required changes at database if provided, will be cleared
1410 :return:
1411 """
quilesj4cda56b2019-12-05 10:02:20 +00001412 try:
tiernoe876f672020-02-13 14:34:48 +00001413 db_dict = other_update or {}
1414 db_dict["_admin.nslcmop"] = current_operation_id # for backward compatibility
1415 db_dict["_admin.current-operation"] = current_operation_id
1416 db_dict["_admin.operation-type"] = current_operation if current_operation != "IDLE" else None
quilesj4cda56b2019-12-05 10:02:20 +00001417 db_dict["currentOperation"] = current_operation
1418 db_dict["currentOperationID"] = current_operation_id
1419 db_dict["errorDescription"] = error_description
tiernoa2143262020-03-27 16:20:40 +00001420 db_dict["errorDetail"] = error_detail
tiernoe876f672020-02-13 14:34:48 +00001421
1422 if ns_state:
1423 db_dict["nsState"] = ns_state
quilesj4cda56b2019-12-05 10:02:20 +00001424 self.update_db_2("nsrs", nsr_id, db_dict)
tiernoe876f672020-02-13 14:34:48 +00001425 except DbException as e:
quilesj3655ae02019-12-12 16:08:35 +00001426 self.logger.warn('Error writing NS status, ns={}: {}'.format(nsr_id, e))
1427
tiernoe876f672020-02-13 14:34:48 +00001428 def _write_op_status(self, op_id: str, stage: list = None, error_message: str = None, queuePosition: int = 0,
1429 operation_state: str = None, other_update: dict = None):
quilesj3655ae02019-12-12 16:08:35 +00001430 try:
tiernoe876f672020-02-13 14:34:48 +00001431 db_dict = other_update or {}
quilesj3655ae02019-12-12 16:08:35 +00001432 db_dict['queuePosition'] = queuePosition
tiernoe876f672020-02-13 14:34:48 +00001433 if isinstance(stage, list):
1434 db_dict['stage'] = stage[0]
1435 db_dict['detailed-status'] = " ".join(stage)
1436 elif stage is not None:
1437 db_dict['stage'] = str(stage)
1438
1439 if error_message is not None:
quilesj3655ae02019-12-12 16:08:35 +00001440 db_dict['errorMessage'] = error_message
tiernoe876f672020-02-13 14:34:48 +00001441 if operation_state is not None:
1442 db_dict['operationState'] = operation_state
1443 db_dict["statusEnteredTime"] = time()
quilesj3655ae02019-12-12 16:08:35 +00001444 self.update_db_2("nslcmops", op_id, db_dict)
tiernoe876f672020-02-13 14:34:48 +00001445 except DbException as e:
quilesj3655ae02019-12-12 16:08:35 +00001446 self.logger.warn('Error writing OPERATION status for op_id: {} -> {}'.format(op_id, e))
1447
tierno51183952020-04-03 15:48:18 +00001448 def _write_all_config_status(self, db_nsr: dict, status: str):
quilesj3655ae02019-12-12 16:08:35 +00001449 try:
tierno51183952020-04-03 15:48:18 +00001450 nsr_id = db_nsr["_id"]
quilesj3655ae02019-12-12 16:08:35 +00001451 # configurationStatus
1452 config_status = db_nsr.get('configurationStatus')
1453 if config_status:
tierno51183952020-04-03 15:48:18 +00001454 db_nsr_update = {"configurationStatus.{}.status".format(index): status for index, v in
1455 enumerate(config_status) if v}
quilesj3655ae02019-12-12 16:08:35 +00001456 # update status
tierno51183952020-04-03 15:48:18 +00001457 self.update_db_2("nsrs", nsr_id, db_nsr_update)
quilesj3655ae02019-12-12 16:08:35 +00001458
tiernoe876f672020-02-13 14:34:48 +00001459 except DbException as e:
quilesj3655ae02019-12-12 16:08:35 +00001460 self.logger.warn('Error writing all configuration status, ns={}: {}'.format(nsr_id, e))
1461
quilesj63f90042020-01-17 09:53:55 +00001462 def _write_configuration_status(self, nsr_id: str, vca_index: int, status: str = None,
tierno51183952020-04-03 15:48:18 +00001463 element_under_configuration: str = None, element_type: str = None,
1464 other_update: dict = None):
quilesj3655ae02019-12-12 16:08:35 +00001465
1466 # self.logger.debug('_write_configuration_status(): vca_index={}, status={}'
1467 # .format(vca_index, status))
1468
1469 try:
1470 db_path = 'configurationStatus.{}.'.format(vca_index)
tierno51183952020-04-03 15:48:18 +00001471 db_dict = other_update or {}
quilesj63f90042020-01-17 09:53:55 +00001472 if status:
1473 db_dict[db_path + 'status'] = status
quilesj3655ae02019-12-12 16:08:35 +00001474 if element_under_configuration:
1475 db_dict[db_path + 'elementUnderConfiguration'] = element_under_configuration
1476 if element_type:
1477 db_dict[db_path + 'elementType'] = element_type
1478 self.update_db_2("nsrs", nsr_id, db_dict)
tiernoe876f672020-02-13 14:34:48 +00001479 except DbException as e:
quilesj3655ae02019-12-12 16:08:35 +00001480 self.logger.warn('Error writing configuration status={}, ns={}, vca_index={}: {}'
1481 .format(status, nsr_id, vca_index, e))
quilesj4cda56b2019-12-05 10:02:20 +00001482
tierno38089af2020-04-16 07:56:58 +00001483 async def _do_placement(self, logging_text, db_nslcmop, db_vnfrs):
1484 """
1485 Check and computes the placement, (vim account where to deploy). If it is decided by an external tool, it
1486 sends the request via kafka and wait until the result is wrote at database (nslcmops _admin.plca).
1487 Database is used because the result can be obtained from a different LCM worker in case of HA.
1488 :param logging_text: contains the prefix for logging, with the ns and nslcmop identifiers
1489 :param db_nslcmop: database content of nslcmop
1490 :param db_vnfrs: database content of vnfrs, indexed by member-vnf-index.
1491 :return: None. Modifies database vnfrs and parameter db_vnfr with the computed 'vim-account-id'
1492 """
1493 nslcmop_id = db_nslcmop['_id']
magnussonle9198bb2020-01-21 13:00:51 +01001494 placement_engine = deep_get(db_nslcmop, ('operationParams', 'placement-engine'))
1495 if placement_engine == "PLA":
tierno38089af2020-04-16 07:56:58 +00001496 self.logger.debug(logging_text + "Invoke and wait for placement optimization")
1497 await self.msg.aiowrite("pla", "get_placement", {'nslcmopId': nslcmop_id}, loop=self.loop)
magnussonle9198bb2020-01-21 13:00:51 +01001498 db_poll_interval = 5
tierno38089af2020-04-16 07:56:58 +00001499 wait = db_poll_interval * 10
magnussonle9198bb2020-01-21 13:00:51 +01001500 pla_result = None
1501 while not pla_result and wait >= 0:
1502 await asyncio.sleep(db_poll_interval)
1503 wait -= db_poll_interval
tierno38089af2020-04-16 07:56:58 +00001504 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
magnussonle9198bb2020-01-21 13:00:51 +01001505 pla_result = deep_get(db_nslcmop, ('_admin', 'pla'))
1506
1507 if not pla_result:
tierno38089af2020-04-16 07:56:58 +00001508 raise LcmException("Placement timeout for nslcmopId={}".format(nslcmop_id))
magnussonle9198bb2020-01-21 13:00:51 +01001509
1510 for pla_vnf in pla_result['vnf']:
1511 vnfr = db_vnfrs.get(pla_vnf['member-vnf-index'])
1512 if not pla_vnf.get('vimAccountId') or not vnfr:
1513 continue
1514 self.db.set_one("vnfrs", {"_id": vnfr["_id"]}, {"vim-account-id": pla_vnf['vimAccountId']})
tierno38089af2020-04-16 07:56:58 +00001515 # Modifies db_vnfrs
1516 vnfr["vim-account-id"] = pla_vnf['vimAccountId']
magnussonle9198bb2020-01-21 13:00:51 +01001517 return
1518
1519 def update_nsrs_with_pla_result(self, params):
1520 try:
1521 nslcmop_id = deep_get(params, ('placement', 'nslcmopId'))
1522 self.update_db_2("nslcmops", nslcmop_id, {"_admin.pla": params.get('placement')})
1523 except Exception as e:
1524 self.logger.warn('Update failed for nslcmop_id={}:{}'.format(nslcmop_id, e))
1525
tierno59d22d22018-09-25 18:10:19 +02001526 async def instantiate(self, nsr_id, nslcmop_id):
quilesj7e13aeb2019-10-08 13:34:55 +02001527 """
1528
1529 :param nsr_id: ns instance to deploy
1530 :param nslcmop_id: operation to run
1531 :return:
1532 """
kuused124bfe2019-06-18 12:09:24 +02001533
1534 # Try to lock HA task here
1535 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
1536 if not task_is_locked_by_me:
quilesj3655ae02019-12-12 16:08:35 +00001537 self.logger.debug('instantiate() task is not locked by me, ns={}'.format(nsr_id))
kuused124bfe2019-06-18 12:09:24 +02001538 return
1539
tierno59d22d22018-09-25 18:10:19 +02001540 logging_text = "Task ns={} instantiate={} ".format(nsr_id, nslcmop_id)
1541 self.logger.debug(logging_text + "Enter")
quilesj7e13aeb2019-10-08 13:34:55 +02001542
tierno59d22d22018-09-25 18:10:19 +02001543 # get all needed from database
quilesj7e13aeb2019-10-08 13:34:55 +02001544
1545 # database nsrs record
tierno59d22d22018-09-25 18:10:19 +02001546 db_nsr = None
quilesj7e13aeb2019-10-08 13:34:55 +02001547
1548 # database nslcmops record
tierno59d22d22018-09-25 18:10:19 +02001549 db_nslcmop = None
quilesj7e13aeb2019-10-08 13:34:55 +02001550
1551 # update operation on nsrs
tiernoe876f672020-02-13 14:34:48 +00001552 db_nsr_update = {}
quilesj7e13aeb2019-10-08 13:34:55 +02001553 # update operation on nslcmops
tierno59d22d22018-09-25 18:10:19 +02001554 db_nslcmop_update = {}
quilesj7e13aeb2019-10-08 13:34:55 +02001555
tierno59d22d22018-09-25 18:10:19 +02001556 nslcmop_operation_state = None
quilesj7e13aeb2019-10-08 13:34:55 +02001557 db_vnfrs = {} # vnf's info indexed by member-index
1558 # n2vc_info = {}
tiernoe876f672020-02-13 14:34:48 +00001559 tasks_dict_info = {} # from task to info text
tierno59d22d22018-09-25 18:10:19 +02001560 exc = None
tiernoe876f672020-02-13 14:34:48 +00001561 error_list = []
1562 stage = ['Stage 1/5: preparation of the environment.', "Waiting for previous operations to terminate.", ""]
1563 # ^ stage, step, VIM progress
tierno59d22d22018-09-25 18:10:19 +02001564 try:
kuused124bfe2019-06-18 12:09:24 +02001565 # wait for any previous tasks in process
1566 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
1567
quilesj7e13aeb2019-10-08 13:34:55 +02001568 # STEP 0: Reading database (nslcmops, nsrs, nsds, vnfrs, vnfds)
tiernoe876f672020-02-13 14:34:48 +00001569 stage[1] = "Reading from database,"
quilesj4cda56b2019-12-05 10:02:20 +00001570 # nsState="BUILDING", currentOperation="INSTANTIATING", currentOperationID=nslcmop_id
tiernoe876f672020-02-13 14:34:48 +00001571 db_nsr_update["detailed-status"] = "creating"
1572 db_nsr_update["operational-status"] = "init"
quilesj4cda56b2019-12-05 10:02:20 +00001573 self._write_ns_status(
1574 nsr_id=nsr_id,
1575 ns_state="BUILDING",
1576 current_operation="INSTANTIATING",
tiernoe876f672020-02-13 14:34:48 +00001577 current_operation_id=nslcmop_id,
1578 other_update=db_nsr_update
1579 )
1580 self._write_op_status(
1581 op_id=nslcmop_id,
1582 stage=stage,
1583 queuePosition=0
quilesj4cda56b2019-12-05 10:02:20 +00001584 )
1585
quilesj7e13aeb2019-10-08 13:34:55 +02001586 # read from db: operation
tiernoe876f672020-02-13 14:34:48 +00001587 stage[1] = "Getting nslcmop={} from db".format(nslcmop_id)
tierno59d22d22018-09-25 18:10:19 +02001588 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
tierno744303e2020-01-13 16:46:31 +00001589 ns_params = db_nslcmop.get("operationParams")
1590 if ns_params and ns_params.get("timeout_ns_deploy"):
1591 timeout_ns_deploy = ns_params["timeout_ns_deploy"]
1592 else:
1593 timeout_ns_deploy = self.timeout.get("ns_deploy", self.timeout_ns_deploy)
quilesj7e13aeb2019-10-08 13:34:55 +02001594
1595 # read from db: ns
tiernoe876f672020-02-13 14:34:48 +00001596 stage[1] = "Getting nsr={} from db".format(nsr_id)
tierno59d22d22018-09-25 18:10:19 +02001597 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
quilesj7e13aeb2019-10-08 13:34:55 +02001598 # nsd is replicated into ns (no db read)
tierno59d22d22018-09-25 18:10:19 +02001599 nsd = db_nsr["nsd"]
tiernod8323042019-08-09 11:32:23 +00001600 # nsr_name = db_nsr["name"] # TODO short-name??
tierno47e86b52018-10-10 14:05:55 +02001601
quilesj7e13aeb2019-10-08 13:34:55 +02001602 # read from db: vnf's of this ns
tiernoe876f672020-02-13 14:34:48 +00001603 stage[1] = "Getting vnfrs from db"
1604 self.logger.debug(logging_text + stage[1])
tierno27246d82018-09-27 15:59:09 +02001605 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
tierno27246d82018-09-27 15:59:09 +02001606
quilesj7e13aeb2019-10-08 13:34:55 +02001607 # read from db: vnfd's for every vnf
1608 db_vnfds_ref = {} # every vnfd data indexed by vnf name
1609 db_vnfds = {} # every vnfd data indexed by vnf id
1610 db_vnfds_index = {} # every vnfd data indexed by vnf member-index
1611
1612 # for each vnf in ns, read vnfd
tierno27246d82018-09-27 15:59:09 +02001613 for vnfr in db_vnfrs_list:
quilesj7e13aeb2019-10-08 13:34:55 +02001614 db_vnfrs[vnfr["member-vnf-index-ref"]] = vnfr # vnf's dict indexed by member-index: '1', '2', etc
1615 vnfd_id = vnfr["vnfd-id"] # vnfd uuid for this vnf
1616 vnfd_ref = vnfr["vnfd-ref"] # vnfd name for this vnf
1617 # if we haven't this vnfd, read it from db
tierno27246d82018-09-27 15:59:09 +02001618 if vnfd_id not in db_vnfds:
quilesj63f90042020-01-17 09:53:55 +00001619 # read from db
tiernoe876f672020-02-13 14:34:48 +00001620 stage[1] = "Getting vnfd={} id='{}' from db".format(vnfd_id, vnfd_ref)
1621 self.logger.debug(logging_text + stage[1])
tierno27246d82018-09-27 15:59:09 +02001622 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
tierno27246d82018-09-27 15:59:09 +02001623
quilesj7e13aeb2019-10-08 13:34:55 +02001624 # store vnfd
1625 db_vnfds_ref[vnfd_ref] = vnfd # vnfd's indexed by name
1626 db_vnfds[vnfd_id] = vnfd # vnfd's indexed by id
1627 db_vnfds_index[vnfr["member-vnf-index-ref"]] = db_vnfds[vnfd_id] # vnfd's indexed by member-index
1628
1629 # Get or generates the _admin.deployed.VCA list
tiernoe4f7e6c2018-11-27 14:55:30 +00001630 vca_deployed_list = None
1631 if db_nsr["_admin"].get("deployed"):
1632 vca_deployed_list = db_nsr["_admin"]["deployed"].get("VCA")
1633 if vca_deployed_list is None:
1634 vca_deployed_list = []
quilesj3655ae02019-12-12 16:08:35 +00001635 configuration_status_list = []
tiernoe4f7e6c2018-11-27 14:55:30 +00001636 db_nsr_update["_admin.deployed.VCA"] = vca_deployed_list
quilesj3655ae02019-12-12 16:08:35 +00001637 db_nsr_update["configurationStatus"] = configuration_status_list
quilesj7e13aeb2019-10-08 13:34:55 +02001638 # add _admin.deployed.VCA to db_nsr dictionary, value=vca_deployed_list
tierno98ad6ea2019-05-30 17:16:28 +00001639 populate_dict(db_nsr, ("_admin", "deployed", "VCA"), vca_deployed_list)
tiernoe4f7e6c2018-11-27 14:55:30 +00001640 elif isinstance(vca_deployed_list, dict):
1641 # maintain backward compatibility. Change a dict to list at database
1642 vca_deployed_list = list(vca_deployed_list.values())
1643 db_nsr_update["_admin.deployed.VCA"] = vca_deployed_list
tierno98ad6ea2019-05-30 17:16:28 +00001644 populate_dict(db_nsr, ("_admin", "deployed", "VCA"), vca_deployed_list)
tiernoe4f7e6c2018-11-27 14:55:30 +00001645
tierno6cf25f52019-09-12 09:33:40 +00001646 if not isinstance(deep_get(db_nsr, ("_admin", "deployed", "RO", "vnfd")), list):
tiernoa009e552019-01-30 16:45:44 +00001647 populate_dict(db_nsr, ("_admin", "deployed", "RO", "vnfd"), [])
1648 db_nsr_update["_admin.deployed.RO.vnfd"] = []
tierno59d22d22018-09-25 18:10:19 +02001649
tiernobaa51102018-12-14 13:16:18 +00001650 # set state to INSTANTIATED. When instantiated NBI will not delete directly
1651 db_nsr_update["_admin.nsState"] = "INSTANTIATED"
1652 self.update_db_2("nsrs", nsr_id, db_nsr_update)
quilesj3655ae02019-12-12 16:08:35 +00001653
1654 # n2vc_redesign STEP 2 Deploy Network Scenario
tiernoe876f672020-02-13 14:34:48 +00001655 stage[0] = 'Stage 2/5: deployment of KDUs, VMs and execution environments.'
quilesj3655ae02019-12-12 16:08:35 +00001656 self._write_op_status(
1657 op_id=nslcmop_id,
tiernoe876f672020-02-13 14:34:48 +00001658 stage=stage
quilesj3655ae02019-12-12 16:08:35 +00001659 )
1660
tiernoe876f672020-02-13 14:34:48 +00001661 stage[1] = "Deploying KDUs,"
1662 # self.logger.debug(logging_text + "Before deploy_kdus")
calvinosanch9f9c6f22019-11-04 13:37:39 +01001663 # Call to deploy_kdus in case exists the "vdu:kdu" param
tiernoe876f672020-02-13 14:34:48 +00001664 await self.deploy_kdus(
1665 logging_text=logging_text,
1666 nsr_id=nsr_id,
1667 nslcmop_id=nslcmop_id,
1668 db_vnfrs=db_vnfrs,
1669 db_vnfds=db_vnfds,
1670 task_instantiation_info=tasks_dict_info,
calvinosanch9f9c6f22019-11-04 13:37:39 +01001671 )
tiernoe876f672020-02-13 14:34:48 +00001672
1673 stage[1] = "Getting VCA public key."
tiernod8323042019-08-09 11:32:23 +00001674 # n2vc_redesign STEP 1 Get VCA public ssh-key
1675 # feature 1429. Add n2vc public key to needed VMs
tierno3bedc9b2019-11-27 15:46:57 +00001676 n2vc_key = self.n2vc.get_public_key()
tiernoa5088192019-11-26 16:12:53 +00001677 n2vc_key_list = [n2vc_key]
1678 if self.vca_config.get("public_key"):
1679 n2vc_key_list.append(self.vca_config["public_key"])
tierno98ad6ea2019-05-30 17:16:28 +00001680
tiernoe876f672020-02-13 14:34:48 +00001681 stage[1] = "Deploying NS at VIM."
tiernod8323042019-08-09 11:32:23 +00001682 task_ro = asyncio.ensure_future(
quilesj7e13aeb2019-10-08 13:34:55 +02001683 self.instantiate_RO(
1684 logging_text=logging_text,
1685 nsr_id=nsr_id,
1686 nsd=nsd,
1687 db_nsr=db_nsr,
1688 db_nslcmop=db_nslcmop,
1689 db_vnfrs=db_vnfrs,
1690 db_vnfds_ref=db_vnfds_ref,
tiernoe876f672020-02-13 14:34:48 +00001691 n2vc_key_list=n2vc_key_list,
1692 stage=stage
tierno98ad6ea2019-05-30 17:16:28 +00001693 )
tiernod8323042019-08-09 11:32:23 +00001694 )
1695 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_RO", task_ro)
tiernoa2143262020-03-27 16:20:40 +00001696 tasks_dict_info[task_ro] = "Deploying at VIM"
tierno98ad6ea2019-05-30 17:16:28 +00001697
tiernod8323042019-08-09 11:32:23 +00001698 # n2vc_redesign STEP 3 to 6 Deploy N2VC
tiernoe876f672020-02-13 14:34:48 +00001699 stage[1] = "Deploying Execution Environments."
1700 self.logger.debug(logging_text + stage[1])
tierno98ad6ea2019-05-30 17:16:28 +00001701
tiernod8323042019-08-09 11:32:23 +00001702 nsi_id = None # TODO put nsi_id when this nsr belongs to a NSI
quilesj7e13aeb2019-10-08 13:34:55 +02001703 # get_iterable() returns a value from a dict or empty tuple if key does not exist
tierno98ad6ea2019-05-30 17:16:28 +00001704 for c_vnf in get_iterable(nsd, "constituent-vnfd"):
1705 vnfd_id = c_vnf["vnfd-id-ref"]
tierno98ad6ea2019-05-30 17:16:28 +00001706 vnfd = db_vnfds_ref[vnfd_id]
tiernod8323042019-08-09 11:32:23 +00001707 member_vnf_index = str(c_vnf["member-vnf-index"])
1708 db_vnfr = db_vnfrs[member_vnf_index]
1709 base_folder = vnfd["_admin"]["storage"]
1710 vdu_id = None
1711 vdu_index = 0
tierno98ad6ea2019-05-30 17:16:28 +00001712 vdu_name = None
calvinosanch9f9c6f22019-11-04 13:37:39 +01001713 kdu_name = None
tierno59d22d22018-09-25 18:10:19 +02001714
tierno8a518872018-12-21 13:42:14 +00001715 # Get additional parameters
tiernod8323042019-08-09 11:32:23 +00001716 deploy_params = {}
1717 if db_vnfr.get("additionalParamsForVnf"):
tierno626e0152019-11-29 14:16:16 +00001718 deploy_params = self._format_additional_params(db_vnfr["additionalParamsForVnf"].copy())
tierno8a518872018-12-21 13:42:14 +00001719
tiernod8323042019-08-09 11:32:23 +00001720 descriptor_config = vnfd.get("vnf-configuration")
1721 if descriptor_config and descriptor_config.get("juju"):
quilesj7e13aeb2019-10-08 13:34:55 +02001722 self._deploy_n2vc(
tiernoa54150d2019-12-05 17:15:10 +00001723 logging_text=logging_text + "member_vnf_index={} ".format(member_vnf_index),
quilesj7e13aeb2019-10-08 13:34:55 +02001724 db_nsr=db_nsr,
1725 db_vnfr=db_vnfr,
1726 nslcmop_id=nslcmop_id,
1727 nsr_id=nsr_id,
1728 nsi_id=nsi_id,
1729 vnfd_id=vnfd_id,
1730 vdu_id=vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01001731 kdu_name=kdu_name,
quilesj7e13aeb2019-10-08 13:34:55 +02001732 member_vnf_index=member_vnf_index,
1733 vdu_index=vdu_index,
1734 vdu_name=vdu_name,
1735 deploy_params=deploy_params,
1736 descriptor_config=descriptor_config,
1737 base_folder=base_folder,
tiernoe876f672020-02-13 14:34:48 +00001738 task_instantiation_info=tasks_dict_info,
1739 stage=stage
quilesj7e13aeb2019-10-08 13:34:55 +02001740 )
tierno59d22d22018-09-25 18:10:19 +02001741
1742 # Deploy charms for each VDU that supports one.
tiernod8323042019-08-09 11:32:23 +00001743 for vdud in get_iterable(vnfd, 'vdu'):
1744 vdu_id = vdud["id"]
1745 descriptor_config = vdud.get('vdu-configuration')
tierno626e0152019-11-29 14:16:16 +00001746 vdur = next((x for x in db_vnfr["vdur"] if x["vdu-id-ref"] == vdu_id), None)
1747 if vdur.get("additionalParams"):
1748 deploy_params_vdu = self._format_additional_params(vdur["additionalParams"])
1749 else:
1750 deploy_params_vdu = deploy_params
tiernod8323042019-08-09 11:32:23 +00001751 if descriptor_config and descriptor_config.get("juju"):
1752 # look for vdu index in the db_vnfr["vdu"] section
1753 # for vdur_index, vdur in enumerate(db_vnfr["vdur"]):
1754 # if vdur["vdu-id-ref"] == vdu_id:
1755 # break
1756 # else:
1757 # raise LcmException("Mismatch vdu_id={} not found in the vnfr['vdur'] list for "
1758 # "member_vnf_index={}".format(vdu_id, member_vnf_index))
1759 # vdu_name = vdur.get("name")
1760 vdu_name = None
calvinosanch9f9c6f22019-11-04 13:37:39 +01001761 kdu_name = None
tiernod8323042019-08-09 11:32:23 +00001762 for vdu_index in range(int(vdud.get("count", 1))):
1763 # TODO vnfr_params["rw_mgmt_ip"] = vdur["ip-address"]
quilesj7e13aeb2019-10-08 13:34:55 +02001764 self._deploy_n2vc(
tiernoa54150d2019-12-05 17:15:10 +00001765 logging_text=logging_text + "member_vnf_index={}, vdu_id={}, vdu_index={} ".format(
1766 member_vnf_index, vdu_id, vdu_index),
quilesj7e13aeb2019-10-08 13:34:55 +02001767 db_nsr=db_nsr,
1768 db_vnfr=db_vnfr,
1769 nslcmop_id=nslcmop_id,
1770 nsr_id=nsr_id,
1771 nsi_id=nsi_id,
1772 vnfd_id=vnfd_id,
1773 vdu_id=vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01001774 kdu_name=kdu_name,
quilesj7e13aeb2019-10-08 13:34:55 +02001775 member_vnf_index=member_vnf_index,
1776 vdu_index=vdu_index,
1777 vdu_name=vdu_name,
tierno626e0152019-11-29 14:16:16 +00001778 deploy_params=deploy_params_vdu,
quilesj7e13aeb2019-10-08 13:34:55 +02001779 descriptor_config=descriptor_config,
1780 base_folder=base_folder,
tierno8e2fae72020-04-01 15:21:15 +00001781 task_instantiation_info=tasks_dict_info,
1782 stage=stage
quilesj7e13aeb2019-10-08 13:34:55 +02001783 )
calvinosanch9f9c6f22019-11-04 13:37:39 +01001784 for kdud in get_iterable(vnfd, 'kdu'):
1785 kdu_name = kdud["name"]
1786 descriptor_config = kdud.get('kdu-configuration')
1787 if descriptor_config and descriptor_config.get("juju"):
1788 vdu_id = None
1789 vdu_index = 0
1790 vdu_name = None
1791 # look for vdu index in the db_vnfr["vdu"] section
1792 # for vdur_index, vdur in enumerate(db_vnfr["vdur"]):
1793 # if vdur["vdu-id-ref"] == vdu_id:
1794 # break
1795 # else:
1796 # raise LcmException("Mismatch vdu_id={} not found in the vnfr['vdur'] list for "
1797 # "member_vnf_index={}".format(vdu_id, member_vnf_index))
1798 # vdu_name = vdur.get("name")
1799 # vdu_name = None
tierno59d22d22018-09-25 18:10:19 +02001800
calvinosanch9f9c6f22019-11-04 13:37:39 +01001801 self._deploy_n2vc(
1802 logging_text=logging_text,
1803 db_nsr=db_nsr,
1804 db_vnfr=db_vnfr,
1805 nslcmop_id=nslcmop_id,
1806 nsr_id=nsr_id,
1807 nsi_id=nsi_id,
1808 vnfd_id=vnfd_id,
1809 vdu_id=vdu_id,
1810 kdu_name=kdu_name,
1811 member_vnf_index=member_vnf_index,
1812 vdu_index=vdu_index,
1813 vdu_name=vdu_name,
1814 deploy_params=deploy_params,
1815 descriptor_config=descriptor_config,
1816 base_folder=base_folder,
tierno8e2fae72020-04-01 15:21:15 +00001817 task_instantiation_info=tasks_dict_info,
1818 stage=stage
calvinosanch9f9c6f22019-11-04 13:37:39 +01001819 )
tierno59d22d22018-09-25 18:10:19 +02001820
tierno1b633412019-02-25 16:48:23 +00001821 # Check if this NS has a charm configuration
tiernod8323042019-08-09 11:32:23 +00001822 descriptor_config = nsd.get("ns-configuration")
1823 if descriptor_config and descriptor_config.get("juju"):
1824 vnfd_id = None
1825 db_vnfr = None
1826 member_vnf_index = None
1827 vdu_id = None
calvinosanch9f9c6f22019-11-04 13:37:39 +01001828 kdu_name = None
tiernod8323042019-08-09 11:32:23 +00001829 vdu_index = 0
1830 vdu_name = None
tierno1b633412019-02-25 16:48:23 +00001831
tiernod8323042019-08-09 11:32:23 +00001832 # Get additional parameters
1833 deploy_params = {}
1834 if db_nsr.get("additionalParamsForNs"):
tierno626e0152019-11-29 14:16:16 +00001835 deploy_params = self._format_additional_params(db_nsr["additionalParamsForNs"].copy())
tiernod8323042019-08-09 11:32:23 +00001836 base_folder = nsd["_admin"]["storage"]
quilesj7e13aeb2019-10-08 13:34:55 +02001837 self._deploy_n2vc(
1838 logging_text=logging_text,
1839 db_nsr=db_nsr,
1840 db_vnfr=db_vnfr,
1841 nslcmop_id=nslcmop_id,
1842 nsr_id=nsr_id,
1843 nsi_id=nsi_id,
1844 vnfd_id=vnfd_id,
1845 vdu_id=vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01001846 kdu_name=kdu_name,
quilesj7e13aeb2019-10-08 13:34:55 +02001847 member_vnf_index=member_vnf_index,
1848 vdu_index=vdu_index,
1849 vdu_name=vdu_name,
1850 deploy_params=deploy_params,
1851 descriptor_config=descriptor_config,
1852 base_folder=base_folder,
tierno8e2fae72020-04-01 15:21:15 +00001853 task_instantiation_info=tasks_dict_info,
1854 stage=stage
quilesj7e13aeb2019-10-08 13:34:55 +02001855 )
tierno1b633412019-02-25 16:48:23 +00001856
tiernoe876f672020-02-13 14:34:48 +00001857 # rest of staff will be done at finally
tierno1b633412019-02-25 16:48:23 +00001858
tiernoe876f672020-02-13 14:34:48 +00001859 except (ROclient.ROClientException, DbException, LcmException, N2VCException) as e:
1860 self.logger.error(logging_text + "Exit Exception while '{}': {}".format(stage[1], e))
tierno59d22d22018-09-25 18:10:19 +02001861 exc = e
1862 except asyncio.CancelledError:
tiernoe876f672020-02-13 14:34:48 +00001863 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(stage[1]))
tierno59d22d22018-09-25 18:10:19 +02001864 exc = "Operation was cancelled"
1865 except Exception as e:
1866 exc = traceback.format_exc()
tiernoe876f672020-02-13 14:34:48 +00001867 self.logger.critical(logging_text + "Exit Exception while '{}': {}".format(stage[1], e), exc_info=True)
tierno59d22d22018-09-25 18:10:19 +02001868 finally:
1869 if exc:
tiernoe876f672020-02-13 14:34:48 +00001870 error_list.append(str(exc))
tiernobaa51102018-12-14 13:16:18 +00001871 try:
tiernoe876f672020-02-13 14:34:48 +00001872 # wait for pending tasks
1873 if tasks_dict_info:
1874 stage[1] = "Waiting for instantiate pending tasks."
1875 self.logger.debug(logging_text + stage[1])
1876 error_list += await self._wait_for_tasks(logging_text, tasks_dict_info, timeout_ns_deploy,
1877 stage, nslcmop_id, nsr_id=nsr_id)
1878 stage[1] = stage[2] = ""
1879 except asyncio.CancelledError:
1880 error_list.append("Cancelled")
1881 # TODO cancel all tasks
1882 except Exception as exc:
1883 error_list.append(str(exc))
quilesj4cda56b2019-12-05 10:02:20 +00001884
tiernoe876f672020-02-13 14:34:48 +00001885 # update operation-status
1886 db_nsr_update["operational-status"] = "running"
1887 # let's begin with VCA 'configured' status (later we can change it)
1888 db_nsr_update["config-status"] = "configured"
1889 for task, task_name in tasks_dict_info.items():
1890 if not task.done() or task.cancelled() or task.exception():
1891 if task_name.startswith(self.task_name_deploy_vca):
1892 # A N2VC task is pending
1893 db_nsr_update["config-status"] = "failed"
quilesj4cda56b2019-12-05 10:02:20 +00001894 else:
tiernoe876f672020-02-13 14:34:48 +00001895 # RO or KDU task is pending
1896 db_nsr_update["operational-status"] = "failed"
quilesj3655ae02019-12-12 16:08:35 +00001897
tiernoe876f672020-02-13 14:34:48 +00001898 # update status at database
1899 if error_list:
tiernoa2143262020-03-27 16:20:40 +00001900 error_detail = ". ".join(error_list)
tiernoe876f672020-02-13 14:34:48 +00001901 self.logger.error(logging_text + error_detail)
tiernoa2143262020-03-27 16:20:40 +00001902 error_description_nslcmop = 'Stage: {}. Detail: {}'.format(stage[0], error_detail)
1903 error_description_nsr = 'Operation: INSTANTIATING.{}, Stage {}'.format(nslcmop_id, stage[0])
quilesj3655ae02019-12-12 16:08:35 +00001904
tiernoa2143262020-03-27 16:20:40 +00001905 db_nsr_update["detailed-status"] = error_description_nsr + " Detail: " + error_detail
tiernoe876f672020-02-13 14:34:48 +00001906 db_nslcmop_update["detailed-status"] = error_detail
1907 nslcmop_operation_state = "FAILED"
1908 ns_state = "BROKEN"
1909 else:
tiernoa2143262020-03-27 16:20:40 +00001910 error_detail = None
tiernoe876f672020-02-13 14:34:48 +00001911 error_description_nsr = error_description_nslcmop = None
1912 ns_state = "READY"
1913 db_nsr_update["detailed-status"] = "Done"
1914 db_nslcmop_update["detailed-status"] = "Done"
1915 nslcmop_operation_state = "COMPLETED"
quilesj4cda56b2019-12-05 10:02:20 +00001916
tiernoe876f672020-02-13 14:34:48 +00001917 if db_nsr:
1918 self._write_ns_status(
1919 nsr_id=nsr_id,
1920 ns_state=ns_state,
1921 current_operation="IDLE",
1922 current_operation_id=None,
1923 error_description=error_description_nsr,
tiernoa2143262020-03-27 16:20:40 +00001924 error_detail=error_detail,
tiernoe876f672020-02-13 14:34:48 +00001925 other_update=db_nsr_update
1926 )
1927 if db_nslcmop:
1928 self._write_op_status(
1929 op_id=nslcmop_id,
1930 stage="",
1931 error_message=error_description_nslcmop,
1932 operation_state=nslcmop_operation_state,
1933 other_update=db_nslcmop_update,
1934 )
quilesj3655ae02019-12-12 16:08:35 +00001935
tierno59d22d22018-09-25 18:10:19 +02001936 if nslcmop_operation_state:
1937 try:
1938 await self.msg.aiowrite("ns", "instantiated", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
tierno8a518872018-12-21 13:42:14 +00001939 "operationState": nslcmop_operation_state},
1940 loop=self.loop)
tierno59d22d22018-09-25 18:10:19 +02001941 except Exception as e:
1942 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
1943
1944 self.logger.debug(logging_text + "Exit")
1945 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_instantiate")
1946
quilesj63f90042020-01-17 09:53:55 +00001947 async def _add_vca_relations(self, logging_text, nsr_id, vca_index: int, timeout: int = 3600) -> bool:
1948
1949 # steps:
1950 # 1. find all relations for this VCA
1951 # 2. wait for other peers related
1952 # 3. add relations
1953
1954 try:
1955
1956 # STEP 1: find all relations for this VCA
1957
1958 # read nsr record
1959 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
1960
1961 # this VCA data
1962 my_vca = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))[vca_index]
1963
1964 # read all ns-configuration relations
1965 ns_relations = list()
1966 db_ns_relations = deep_get(db_nsr, ('nsd', 'ns-configuration', 'relation'))
1967 if db_ns_relations:
1968 for r in db_ns_relations:
1969 # check if this VCA is in the relation
1970 if my_vca.get('member-vnf-index') in\
1971 (r.get('entities')[0].get('id'), r.get('entities')[1].get('id')):
1972 ns_relations.append(r)
1973
1974 # read all vnf-configuration relations
1975 vnf_relations = list()
1976 db_vnfd_list = db_nsr.get('vnfd-id')
1977 if db_vnfd_list:
1978 for vnfd in db_vnfd_list:
1979 db_vnfd = self.db.get_one("vnfds", {"_id": vnfd})
1980 db_vnf_relations = deep_get(db_vnfd, ('vnf-configuration', 'relation'))
1981 if db_vnf_relations:
1982 for r in db_vnf_relations:
1983 # check if this VCA is in the relation
1984 if my_vca.get('vdu_id') in (r.get('entities')[0].get('id'), r.get('entities')[1].get('id')):
1985 vnf_relations.append(r)
1986
1987 # if no relations, terminate
1988 if not ns_relations and not vnf_relations:
1989 self.logger.debug(logging_text + ' No relations')
1990 return True
1991
1992 self.logger.debug(logging_text + ' adding relations\n {}\n {}'.format(ns_relations, vnf_relations))
1993
1994 # add all relations
1995 start = time()
1996 while True:
1997 # check timeout
1998 now = time()
1999 if now - start >= timeout:
2000 self.logger.error(logging_text + ' : timeout adding relations')
2001 return False
2002
2003 # reload nsr from database (we need to update record: _admin.deloyed.VCA)
2004 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2005
2006 # for each defined NS relation, find the VCA's related
2007 for r in ns_relations:
2008 from_vca_ee_id = None
2009 to_vca_ee_id = None
2010 from_vca_endpoint = None
2011 to_vca_endpoint = None
2012 vca_list = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))
2013 for vca in vca_list:
2014 if vca.get('member-vnf-index') == r.get('entities')[0].get('id') \
2015 and vca.get('config_sw_installed'):
2016 from_vca_ee_id = vca.get('ee_id')
2017 from_vca_endpoint = r.get('entities')[0].get('endpoint')
2018 if vca.get('member-vnf-index') == r.get('entities')[1].get('id') \
2019 and vca.get('config_sw_installed'):
2020 to_vca_ee_id = vca.get('ee_id')
2021 to_vca_endpoint = r.get('entities')[1].get('endpoint')
2022 if from_vca_ee_id and to_vca_ee_id:
2023 # add relation
2024 await self.n2vc.add_relation(
2025 ee_id_1=from_vca_ee_id,
2026 ee_id_2=to_vca_ee_id,
2027 endpoint_1=from_vca_endpoint,
2028 endpoint_2=to_vca_endpoint)
2029 # remove entry from relations list
2030 ns_relations.remove(r)
2031 else:
2032 # check failed peers
2033 try:
2034 vca_status_list = db_nsr.get('configurationStatus')
2035 if vca_status_list:
2036 for i in range(len(vca_list)):
2037 vca = vca_list[i]
2038 vca_status = vca_status_list[i]
2039 if vca.get('member-vnf-index') == r.get('entities')[0].get('id'):
2040 if vca_status.get('status') == 'BROKEN':
2041 # peer broken: remove relation from list
2042 ns_relations.remove(r)
2043 if vca.get('member-vnf-index') == r.get('entities')[1].get('id'):
2044 if vca_status.get('status') == 'BROKEN':
2045 # peer broken: remove relation from list
2046 ns_relations.remove(r)
2047 except Exception:
2048 # ignore
2049 pass
2050
2051 # for each defined VNF relation, find the VCA's related
2052 for r in vnf_relations:
2053 from_vca_ee_id = None
2054 to_vca_ee_id = None
2055 from_vca_endpoint = None
2056 to_vca_endpoint = None
2057 vca_list = deep_get(db_nsr, ('_admin', 'deployed', 'VCA'))
2058 for vca in vca_list:
2059 if vca.get('vdu_id') == r.get('entities')[0].get('id') and vca.get('config_sw_installed'):
2060 from_vca_ee_id = vca.get('ee_id')
2061 from_vca_endpoint = r.get('entities')[0].get('endpoint')
2062 if vca.get('vdu_id') == r.get('entities')[1].get('id') and vca.get('config_sw_installed'):
2063 to_vca_ee_id = vca.get('ee_id')
2064 to_vca_endpoint = r.get('entities')[1].get('endpoint')
2065 if from_vca_ee_id and to_vca_ee_id:
2066 # add relation
2067 await self.n2vc.add_relation(
2068 ee_id_1=from_vca_ee_id,
2069 ee_id_2=to_vca_ee_id,
2070 endpoint_1=from_vca_endpoint,
2071 endpoint_2=to_vca_endpoint)
2072 # remove entry from relations list
2073 vnf_relations.remove(r)
2074 else:
2075 # check failed peers
2076 try:
2077 vca_status_list = db_nsr.get('configurationStatus')
2078 if vca_status_list:
2079 for i in range(len(vca_list)):
2080 vca = vca_list[i]
2081 vca_status = vca_status_list[i]
2082 if vca.get('vdu_id') == r.get('entities')[0].get('id'):
2083 if vca_status.get('status') == 'BROKEN':
2084 # peer broken: remove relation from list
2085 ns_relations.remove(r)
2086 if vca.get('vdu_id') == r.get('entities')[1].get('id'):
2087 if vca_status.get('status') == 'BROKEN':
2088 # peer broken: remove relation from list
2089 ns_relations.remove(r)
2090 except Exception:
2091 # ignore
2092 pass
2093
2094 # wait for next try
2095 await asyncio.sleep(5.0)
2096
2097 if not ns_relations and not vnf_relations:
2098 self.logger.debug('Relations added')
2099 break
2100
2101 return True
2102
2103 except Exception as e:
2104 self.logger.warn(logging_text + ' ERROR adding relations: {}'.format(e))
2105 return False
2106
tiernob9018152020-04-16 14:18:24 +00002107 def _write_db_callback(self, task, item, _id, on_done=None, on_exc=None):
2108 """
2109 callback for kdu install intended to store the returned kdu_instance at database
2110 :return: None
2111 """
2112 db_update = {}
2113 try:
2114 result = task.result()
2115 if on_done:
2116 db_update[on_done] = str(result)
2117 except Exception as e:
2118 if on_exc:
2119 db_update[on_exc] = str(e)
2120 if db_update:
2121 try:
2122 self.update_db_2(item, _id, db_update)
2123 except Exception:
2124 pass
2125
tiernoe876f672020-02-13 14:34:48 +00002126 async def deploy_kdus(self, logging_text, nsr_id, nslcmop_id, db_vnfrs, db_vnfds, task_instantiation_info):
calvinosanch9f9c6f22019-11-04 13:37:39 +01002127 # Launch kdus if present in the descriptor
tierno626e0152019-11-29 14:16:16 +00002128
2129 k8scluster_id_2_uuic = {"helm-chart": {}, "juju-bundle": {}}
2130
2131 def _get_cluster_id(cluster_id, cluster_type):
2132 nonlocal k8scluster_id_2_uuic
2133 if cluster_id in k8scluster_id_2_uuic[cluster_type]:
2134 return k8scluster_id_2_uuic[cluster_type][cluster_id]
2135
2136 db_k8scluster = self.db.get_one("k8sclusters", {"_id": cluster_id}, fail_on_empty=False)
2137 if not db_k8scluster:
2138 raise LcmException("K8s cluster {} cannot be found".format(cluster_id))
2139 k8s_id = deep_get(db_k8scluster, ("_admin", cluster_type, "id"))
2140 if not k8s_id:
2141 raise LcmException("K8s cluster '{}' has not been initilized for '{}'".format(cluster_id, cluster_type))
2142 k8scluster_id_2_uuic[cluster_type][cluster_id] = k8s_id
2143 return k8s_id
2144
2145 logging_text += "Deploy kdus: "
tiernoe876f672020-02-13 14:34:48 +00002146 step = ""
calvinosanch9f9c6f22019-11-04 13:37:39 +01002147 try:
tierno626e0152019-11-29 14:16:16 +00002148 db_nsr_update = {"_admin.deployed.K8s": []}
calvinosanch9f9c6f22019-11-04 13:37:39 +01002149 self.update_db_2("nsrs", nsr_id, db_nsr_update)
calvinosanch9f9c6f22019-11-04 13:37:39 +01002150
tierno626e0152019-11-29 14:16:16 +00002151 index = 0
tiernoe876f672020-02-13 14:34:48 +00002152 updated_cluster_list = []
2153
tierno626e0152019-11-29 14:16:16 +00002154 for vnfr_data in db_vnfrs.values():
2155 for kdur in get_iterable(vnfr_data, "kdur"):
2156 desc_params = self._format_additional_params(kdur.get("additionalParams"))
quilesjacde94f2020-01-23 10:07:08 +00002157 vnfd_id = vnfr_data.get('vnfd-id')
tiernode1584f2020-04-07 09:07:33 +00002158 namespace = kdur.get("k8s-namespace")
tierno626e0152019-11-29 14:16:16 +00002159 if kdur.get("helm-chart"):
2160 kdumodel = kdur["helm-chart"]
tiernoe876f672020-02-13 14:34:48 +00002161 k8sclustertype = "helm-chart"
tierno626e0152019-11-29 14:16:16 +00002162 elif kdur.get("juju-bundle"):
2163 kdumodel = kdur["juju-bundle"]
tiernoe876f672020-02-13 14:34:48 +00002164 k8sclustertype = "juju-bundle"
tierno626e0152019-11-29 14:16:16 +00002165 else:
tiernoe876f672020-02-13 14:34:48 +00002166 raise LcmException("kdu type for kdu='{}.{}' is neither helm-chart nor "
2167 "juju-bundle. Maybe an old NBI version is running".
2168 format(vnfr_data["member-vnf-index-ref"], kdur["kdu-name"]))
quilesjacde94f2020-01-23 10:07:08 +00002169 # check if kdumodel is a file and exists
2170 try:
tierno51183952020-04-03 15:48:18 +00002171 storage = deep_get(db_vnfds.get(vnfd_id), ('_admin', 'storage'))
2172 if storage and storage.get('pkg-dir'): # may be not present if vnfd has not artifacts
2173 # path format: /vnfdid/pkkdir/helm-charts|juju-bundles/kdumodel
2174 filename = '{}/{}/{}s/{}'.format(storage["folder"], storage["'pkg-dir"], k8sclustertype,
2175 kdumodel)
2176 if self.fs.file_exists(filename, mode='file') or self.fs.file_exists(filename, mode='dir'):
2177 kdumodel = self.fs.path + filename
2178 except (asyncio.TimeoutError, asyncio.CancelledError):
tiernoe876f672020-02-13 14:34:48 +00002179 raise
2180 except Exception: # it is not a file
quilesjacde94f2020-01-23 10:07:08 +00002181 pass
lloretgallegedc5f332020-02-20 11:50:50 +01002182
tiernoe876f672020-02-13 14:34:48 +00002183 k8s_cluster_id = kdur["k8s-cluster"]["id"]
2184 step = "Synchronize repos for k8s cluster '{}'".format(k8s_cluster_id)
2185 cluster_uuid = _get_cluster_id(k8s_cluster_id, k8sclustertype)
lloretgallegedc5f332020-02-20 11:50:50 +01002186
tiernoe876f672020-02-13 14:34:48 +00002187 if k8sclustertype == "helm-chart" and cluster_uuid not in updated_cluster_list:
2188 del_repo_list, added_repo_dict = await asyncio.ensure_future(
2189 self.k8sclusterhelm.synchronize_repos(cluster_uuid=cluster_uuid))
2190 if del_repo_list or added_repo_dict:
2191 unset = {'_admin.helm_charts_added.' + item: None for item in del_repo_list}
2192 updated = {'_admin.helm_charts_added.' +
2193 item: name for item, name in added_repo_dict.items()}
2194 self.logger.debug(logging_text + "repos synchronized on k8s cluster '{}' to_delete: {}, "
2195 "to_add: {}".format(k8s_cluster_id, del_repo_list,
2196 added_repo_dict))
2197 self.db.set_one("k8sclusters", {"_id": k8s_cluster_id}, updated, unset=unset)
2198 updated_cluster_list.append(cluster_uuid)
lloretgallegedc5f332020-02-20 11:50:50 +01002199
tiernoe876f672020-02-13 14:34:48 +00002200 step = "Instantiating KDU {}.{} in k8s cluster {}".format(vnfr_data["member-vnf-index-ref"],
2201 kdur["kdu-name"], k8s_cluster_id)
tierno626e0152019-11-29 14:16:16 +00002202
tierno067e04a2020-03-31 12:53:13 +00002203 k8s_instace_info = {"kdu-instance": None,
2204 "k8scluster-uuid": cluster_uuid,
tierno626e0152019-11-29 14:16:16 +00002205 "k8scluster-type": k8sclustertype,
tierno067e04a2020-03-31 12:53:13 +00002206 "member-vnf-index": vnfr_data["member-vnf-index-ref"],
2207 "kdu-name": kdur["kdu-name"],
tiernode1584f2020-04-07 09:07:33 +00002208 "kdu-model": kdumodel,
2209 "namespace": namespace}
tiernob9018152020-04-16 14:18:24 +00002210 db_path = "_admin.deployed.K8s.{}".format(index)
2211 db_nsr_update[db_path] = k8s_instace_info
tierno626e0152019-11-29 14:16:16 +00002212 self.update_db_2("nsrs", nsr_id, db_nsr_update)
tierno626e0152019-11-29 14:16:16 +00002213
tiernoe876f672020-02-13 14:34:48 +00002214 db_dict = {"collection": "nsrs",
2215 "filter": {"_id": nsr_id},
tiernob9018152020-04-16 14:18:24 +00002216 "path": db_path}
lloretgallegedc5f332020-02-20 11:50:50 +01002217
tiernoa2143262020-03-27 16:20:40 +00002218 task = asyncio.ensure_future(
2219 self.k8scluster_map[k8sclustertype].install(cluster_uuid=cluster_uuid, kdu_model=kdumodel,
2220 atomic=True, params=desc_params,
2221 db_dict=db_dict, timeout=600,
tiernode1584f2020-04-07 09:07:33 +00002222 kdu_name=kdur["kdu-name"], namespace=namespace))
Adam Israelbaacc302019-12-01 12:41:39 -05002223
tiernob9018152020-04-16 14:18:24 +00002224 task.add_done_callback(partial(self._write_db_callback, item="nsrs", _id=nsr_id,
2225 on_done=db_path + ".kdu-instance",
2226 on_exc=db_path + ".detailed-status"))
tiernoe876f672020-02-13 14:34:48 +00002227 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_KDU-{}".format(index), task)
tiernoa2143262020-03-27 16:20:40 +00002228 task_instantiation_info[task] = "Deploying KDU {}".format(kdur["kdu-name"])
tiernoe876f672020-02-13 14:34:48 +00002229
tierno626e0152019-11-29 14:16:16 +00002230 index += 1
quilesjdd799ac2020-01-23 16:31:11 +00002231
tiernoe876f672020-02-13 14:34:48 +00002232 except (LcmException, asyncio.CancelledError):
2233 raise
calvinosanch9f9c6f22019-11-04 13:37:39 +01002234 except Exception as e:
tiernoe876f672020-02-13 14:34:48 +00002235 msg = "Exception {} while {}: {}".format(type(e).__name__, step, e)
2236 if isinstance(e, (N2VCException, DbException)):
2237 self.logger.error(logging_text + msg)
2238 else:
2239 self.logger.critical(logging_text + msg, exc_info=True)
quilesjdd799ac2020-01-23 16:31:11 +00002240 raise LcmException(msg)
calvinosanch9f9c6f22019-11-04 13:37:39 +01002241 finally:
calvinosanch9f9c6f22019-11-04 13:37:39 +01002242 if db_nsr_update:
2243 self.update_db_2("nsrs", nsr_id, db_nsr_update)
tiernoda6fb102019-11-23 00:36:52 +00002244
quilesj7e13aeb2019-10-08 13:34:55 +02002245 def _deploy_n2vc(self, logging_text, db_nsr, db_vnfr, nslcmop_id, nsr_id, nsi_id, vnfd_id, vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01002246 kdu_name, member_vnf_index, vdu_index, vdu_name, deploy_params, descriptor_config,
tiernoe876f672020-02-13 14:34:48 +00002247 base_folder, task_instantiation_info, stage):
quilesj7e13aeb2019-10-08 13:34:55 +02002248 # launch instantiate_N2VC in a asyncio task and register task object
2249 # Look where information of this charm is at database <nsrs>._admin.deployed.VCA
2250 # if not found, create one entry and update database
tiernobaa51102018-12-14 13:16:18 +00002251
quilesj7e13aeb2019-10-08 13:34:55 +02002252 # fill db_nsr._admin.deployed.VCA.<index>
2253 vca_index = -1
2254 for vca_index, vca_deployed in enumerate(db_nsr["_admin"]["deployed"]["VCA"]):
2255 if not vca_deployed:
2256 continue
2257 if vca_deployed.get("member-vnf-index") == member_vnf_index and \
2258 vca_deployed.get("vdu_id") == vdu_id and \
calvinosanch9f9c6f22019-11-04 13:37:39 +01002259 vca_deployed.get("kdu_name") == kdu_name and \
quilesj7e13aeb2019-10-08 13:34:55 +02002260 vca_deployed.get("vdu_count_index", 0) == vdu_index:
2261 break
2262 else:
2263 # not found, create one.
2264 vca_deployed = {
2265 "member-vnf-index": member_vnf_index,
2266 "vdu_id": vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01002267 "kdu_name": kdu_name,
quilesj7e13aeb2019-10-08 13:34:55 +02002268 "vdu_count_index": vdu_index,
2269 "operational-status": "init", # TODO revise
2270 "detailed-status": "", # TODO revise
2271 "step": "initial-deploy", # TODO revise
2272 "vnfd_id": vnfd_id,
2273 "vdu_name": vdu_name,
2274 }
2275 vca_index += 1
quilesj3655ae02019-12-12 16:08:35 +00002276
2277 # create VCA and configurationStatus in db
2278 db_dict = {
2279 "_admin.deployed.VCA.{}".format(vca_index): vca_deployed,
2280 "configurationStatus.{}".format(vca_index): dict()
2281 }
2282 self.update_db_2("nsrs", nsr_id, db_dict)
2283
quilesj7e13aeb2019-10-08 13:34:55 +02002284 db_nsr["_admin"]["deployed"]["VCA"].append(vca_deployed)
2285
2286 # Launch task
2287 task_n2vc = asyncio.ensure_future(
2288 self.instantiate_N2VC(
2289 logging_text=logging_text,
2290 vca_index=vca_index,
2291 nsi_id=nsi_id,
2292 db_nsr=db_nsr,
2293 db_vnfr=db_vnfr,
2294 vdu_id=vdu_id,
calvinosanch9f9c6f22019-11-04 13:37:39 +01002295 kdu_name=kdu_name,
quilesj7e13aeb2019-10-08 13:34:55 +02002296 vdu_index=vdu_index,
2297 deploy_params=deploy_params,
2298 config_descriptor=descriptor_config,
2299 base_folder=base_folder,
tiernoe876f672020-02-13 14:34:48 +00002300 nslcmop_id=nslcmop_id,
2301 stage=stage
quilesj7e13aeb2019-10-08 13:34:55 +02002302 )
2303 )
2304 self.lcm_tasks.register("ns", nsr_id, nslcmop_id, "instantiate_N2VC-{}".format(vca_index), task_n2vc)
tiernoe876f672020-02-13 14:34:48 +00002305 task_instantiation_info[task_n2vc] = self.task_name_deploy_vca + " {}.{}".format(
2306 member_vnf_index or "", vdu_id or "")
tiernobaa51102018-12-14 13:16:18 +00002307
kuuse0ca67472019-05-13 15:59:27 +02002308 # Check if this VNFD has a configured terminate action
2309 def _has_terminate_config_primitive(self, vnfd):
2310 vnf_config = vnfd.get("vnf-configuration")
2311 if vnf_config and vnf_config.get("terminate-config-primitive"):
2312 return True
2313 else:
2314 return False
2315
tiernoc9556972019-07-05 15:25:25 +00002316 @staticmethod
2317 def _get_terminate_config_primitive_seq_list(vnfd):
2318 """ Get a numerically sorted list of the sequences for this VNFD's terminate action """
kuuse0ca67472019-05-13 15:59:27 +02002319 # No need to check for existing primitive twice, already done before
2320 vnf_config = vnfd.get("vnf-configuration")
2321 seq_list = vnf_config.get("terminate-config-primitive")
2322 # Get all 'seq' tags in seq_list, order sequences numerically, ascending.
2323 seq_list_sorted = sorted(seq_list, key=lambda x: int(x['seq']))
2324 return seq_list_sorted
2325
2326 @staticmethod
2327 def _create_nslcmop(nsr_id, operation, params):
2328 """
2329 Creates a ns-lcm-opp content to be stored at database.
2330 :param nsr_id: internal id of the instance
2331 :param operation: instantiate, terminate, scale, action, ...
2332 :param params: user parameters for the operation
2333 :return: dictionary following SOL005 format
2334 """
2335 # Raise exception if invalid arguments
2336 if not (nsr_id and operation and params):
2337 raise LcmException(
2338 "Parameters 'nsr_id', 'operation' and 'params' needed to create primitive not provided")
2339 now = time()
2340 _id = str(uuid4())
2341 nslcmop = {
2342 "id": _id,
2343 "_id": _id,
2344 # COMPLETED,PARTIALLY_COMPLETED,FAILED_TEMP,FAILED,ROLLING_BACK,ROLLED_BACK
2345 "operationState": "PROCESSING",
2346 "statusEnteredTime": now,
2347 "nsInstanceId": nsr_id,
2348 "lcmOperationType": operation,
2349 "startTime": now,
2350 "isAutomaticInvocation": False,
2351 "operationParams": params,
2352 "isCancelPending": False,
2353 "links": {
2354 "self": "/osm/nslcm/v1/ns_lcm_op_occs/" + _id,
2355 "nsInstance": "/osm/nslcm/v1/ns_instances/" + nsr_id,
2356 }
2357 }
2358 return nslcmop
2359
calvinosanch9f9c6f22019-11-04 13:37:39 +01002360 def _format_additional_params(self, params):
tierno626e0152019-11-29 14:16:16 +00002361 params = params or {}
calvinosanch9f9c6f22019-11-04 13:37:39 +01002362 for key, value in params.items():
2363 if str(value).startswith("!!yaml "):
2364 params[key] = yaml.safe_load(value[7:])
calvinosanch9f9c6f22019-11-04 13:37:39 +01002365 return params
2366
kuuse8b998e42019-07-30 15:22:16 +02002367 def _get_terminate_primitive_params(self, seq, vnf_index):
2368 primitive = seq.get('name')
2369 primitive_params = {}
2370 params = {
2371 "member_vnf_index": vnf_index,
2372 "primitive": primitive,
2373 "primitive_params": primitive_params,
2374 }
2375 desc_params = {}
2376 return self._map_primitive_params(seq, params, desc_params)
2377
kuuseac3a8882019-10-03 10:48:06 +02002378 # sub-operations
2379
tierno51183952020-04-03 15:48:18 +00002380 def _retry_or_skip_suboperation(self, db_nslcmop, op_index):
2381 op = deep_get(db_nslcmop, ('_admin', 'operations'), [])[op_index]
2382 if op.get('operationState') == 'COMPLETED':
kuuseac3a8882019-10-03 10:48:06 +02002383 # b. Skip sub-operation
2384 # _ns_execute_primitive() or RO.create_action() will NOT be executed
2385 return self.SUBOPERATION_STATUS_SKIP
2386 else:
2387 # c. Reintent executing sub-operation
2388 # The sub-operation exists, and operationState != 'COMPLETED'
2389 # Update operationState = 'PROCESSING' to indicate a reintent.
2390 operationState = 'PROCESSING'
2391 detailed_status = 'In progress'
2392 self._update_suboperation_status(
2393 db_nslcmop, op_index, operationState, detailed_status)
2394 # Return the sub-operation index
2395 # _ns_execute_primitive() or RO.create_action() will be called from scale()
2396 # with arguments extracted from the sub-operation
2397 return op_index
2398
2399 # Find a sub-operation where all keys in a matching dictionary must match
2400 # Returns the index of the matching sub-operation, or SUBOPERATION_STATUS_NOT_FOUND if no match
2401 def _find_suboperation(self, db_nslcmop, match):
2402 if (db_nslcmop and match):
2403 op_list = db_nslcmop.get('_admin', {}).get('operations', [])
2404 for i, op in enumerate(op_list):
2405 if all(op.get(k) == match[k] for k in match):
2406 return i
2407 return self.SUBOPERATION_STATUS_NOT_FOUND
2408
2409 # Update status for a sub-operation given its index
2410 def _update_suboperation_status(self, db_nslcmop, op_index, operationState, detailed_status):
2411 # Update DB for HA tasks
2412 q_filter = {'_id': db_nslcmop['_id']}
2413 update_dict = {'_admin.operations.{}.operationState'.format(op_index): operationState,
2414 '_admin.operations.{}.detailed-status'.format(op_index): detailed_status}
2415 self.db.set_one("nslcmops",
2416 q_filter=q_filter,
2417 update_dict=update_dict,
2418 fail_on_empty=False)
2419
2420 # Add sub-operation, return the index of the added sub-operation
2421 # Optionally, set operationState, detailed-status, and operationType
2422 # Status and type are currently set for 'scale' sub-operations:
2423 # 'operationState' : 'PROCESSING' | 'COMPLETED' | 'FAILED'
2424 # 'detailed-status' : status message
2425 # 'operationType': may be any type, in the case of scaling: 'PRE-SCALE' | 'POST-SCALE'
2426 # Status and operation type are currently only used for 'scale', but NOT for 'terminate' sub-operations.
quilesj7e13aeb2019-10-08 13:34:55 +02002427 def _add_suboperation(self, db_nslcmop, vnf_index, vdu_id, vdu_count_index, vdu_name, primitive,
2428 mapped_primitive_params, operationState=None, detailed_status=None, operationType=None,
kuuseac3a8882019-10-03 10:48:06 +02002429 RO_nsr_id=None, RO_scaling_info=None):
tiernoe876f672020-02-13 14:34:48 +00002430 if not db_nslcmop:
kuuseac3a8882019-10-03 10:48:06 +02002431 return self.SUBOPERATION_STATUS_NOT_FOUND
2432 # Get the "_admin.operations" list, if it exists
2433 db_nslcmop_admin = db_nslcmop.get('_admin', {})
2434 op_list = db_nslcmop_admin.get('operations')
2435 # Create or append to the "_admin.operations" list
kuuse8b998e42019-07-30 15:22:16 +02002436 new_op = {'member_vnf_index': vnf_index,
2437 'vdu_id': vdu_id,
2438 'vdu_count_index': vdu_count_index,
2439 'primitive': primitive,
2440 'primitive_params': mapped_primitive_params}
kuuseac3a8882019-10-03 10:48:06 +02002441 if operationState:
2442 new_op['operationState'] = operationState
2443 if detailed_status:
2444 new_op['detailed-status'] = detailed_status
2445 if operationType:
2446 new_op['lcmOperationType'] = operationType
2447 if RO_nsr_id:
2448 new_op['RO_nsr_id'] = RO_nsr_id
2449 if RO_scaling_info:
2450 new_op['RO_scaling_info'] = RO_scaling_info
2451 if not op_list:
2452 # No existing operations, create key 'operations' with current operation as first list element
2453 db_nslcmop_admin.update({'operations': [new_op]})
2454 op_list = db_nslcmop_admin.get('operations')
2455 else:
2456 # Existing operations, append operation to list
2457 op_list.append(new_op)
kuuse8b998e42019-07-30 15:22:16 +02002458
kuuseac3a8882019-10-03 10:48:06 +02002459 db_nslcmop_update = {'_admin.operations': op_list}
2460 self.update_db_2("nslcmops", db_nslcmop['_id'], db_nslcmop_update)
2461 op_index = len(op_list) - 1
2462 return op_index
2463
2464 # Helper methods for scale() sub-operations
2465
2466 # pre-scale/post-scale:
2467 # Check for 3 different cases:
2468 # a. New: First time execution, return SUBOPERATION_STATUS_NEW
2469 # b. Skip: Existing sub-operation exists, operationState == 'COMPLETED', return SUBOPERATION_STATUS_SKIP
2470 # c. Reintent: Existing sub-operation exists, operationState != 'COMPLETED', return op_index to re-execute
quilesj7e13aeb2019-10-08 13:34:55 +02002471 def _check_or_add_scale_suboperation(self, db_nslcmop, vnf_index, vnf_config_primitive, primitive_params,
2472 operationType, RO_nsr_id=None, RO_scaling_info=None):
kuuseac3a8882019-10-03 10:48:06 +02002473 # Find this sub-operation
2474 if (RO_nsr_id and RO_scaling_info):
2475 operationType = 'SCALE-RO'
2476 match = {
2477 'member_vnf_index': vnf_index,
2478 'RO_nsr_id': RO_nsr_id,
2479 'RO_scaling_info': RO_scaling_info,
2480 }
2481 else:
2482 match = {
2483 'member_vnf_index': vnf_index,
2484 'primitive': vnf_config_primitive,
2485 'primitive_params': primitive_params,
2486 'lcmOperationType': operationType
2487 }
2488 op_index = self._find_suboperation(db_nslcmop, match)
tierno51183952020-04-03 15:48:18 +00002489 if op_index == self.SUBOPERATION_STATUS_NOT_FOUND:
kuuseac3a8882019-10-03 10:48:06 +02002490 # a. New sub-operation
2491 # The sub-operation does not exist, add it.
2492 # _ns_execute_primitive() will be called from scale() as usual, with non-modified arguments
2493 # The following parameters are set to None for all kind of scaling:
2494 vdu_id = None
2495 vdu_count_index = None
2496 vdu_name = None
tierno51183952020-04-03 15:48:18 +00002497 if RO_nsr_id and RO_scaling_info:
kuuseac3a8882019-10-03 10:48:06 +02002498 vnf_config_primitive = None
2499 primitive_params = None
2500 else:
2501 RO_nsr_id = None
2502 RO_scaling_info = None
2503 # Initial status for sub-operation
2504 operationState = 'PROCESSING'
2505 detailed_status = 'In progress'
2506 # Add sub-operation for pre/post-scaling (zero or more operations)
2507 self._add_suboperation(db_nslcmop,
2508 vnf_index,
2509 vdu_id,
2510 vdu_count_index,
2511 vdu_name,
2512 vnf_config_primitive,
2513 primitive_params,
2514 operationState,
2515 detailed_status,
2516 operationType,
2517 RO_nsr_id,
2518 RO_scaling_info)
2519 return self.SUBOPERATION_STATUS_NEW
2520 else:
2521 # Return either SUBOPERATION_STATUS_SKIP (operationState == 'COMPLETED'),
2522 # or op_index (operationState != 'COMPLETED')
tierno51183952020-04-03 15:48:18 +00002523 return self._retry_or_skip_suboperation(db_nslcmop, op_index)
kuuseac3a8882019-10-03 10:48:06 +02002524
preethika.pdf7d8e02019-12-10 13:10:48 +00002525 # Function to return execution_environment id
2526
2527 def _get_ee_id(self, vnf_index, vdu_id, vca_deployed_list):
tiernoe876f672020-02-13 14:34:48 +00002528 # TODO vdu_index_count
preethika.pdf7d8e02019-12-10 13:10:48 +00002529 for vca in vca_deployed_list:
2530 if vca["member-vnf-index"] == vnf_index and vca["vdu_id"] == vdu_id:
2531 return vca["ee_id"]
2532
tiernoe876f672020-02-13 14:34:48 +00002533 async def destroy_N2VC(self, logging_text, db_nslcmop, vca_deployed, config_descriptor, vca_index, destroy_ee=True):
2534 """
2535 Execute the terminate primitives and destroy the execution environment (if destroy_ee=False
2536 :param logging_text:
2537 :param db_nslcmop:
2538 :param vca_deployed: Dictionary of deployment info at db_nsr._admin.depoloyed.VCA.<INDEX>
2539 :param config_descriptor: Configuration descriptor of the NSD, VNFD, VNFD.vdu or VNFD.kdu
2540 :param vca_index: index in the database _admin.deployed.VCA
2541 :param destroy_ee: False to do not destroy, because it will be destroyed all of then at once
2542 :return: None or exception
2543 """
2544 # execute terminate_primitives
2545 terminate_primitives = config_descriptor.get("terminate-config-primitive")
2546 vdu_id = vca_deployed.get("vdu_id")
2547 vdu_count_index = vca_deployed.get("vdu_count_index")
2548 vdu_name = vca_deployed.get("vdu_name")
2549 vnf_index = vca_deployed.get("member-vnf-index")
2550 if terminate_primitives and vca_deployed.get("needed_terminate"):
2551 # Get all 'seq' tags in seq_list, order sequences numerically, ascending.
2552 terminate_primitives = sorted(terminate_primitives, key=lambda x: int(x['seq']))
2553 for seq in terminate_primitives:
kuuse8b998e42019-07-30 15:22:16 +02002554 # For each sequence in list, get primitive and call _ns_execute_primitive()
kuuse0ca67472019-05-13 15:59:27 +02002555 step = "Calling terminate action for vnf_member_index={} primitive={}".format(
2556 vnf_index, seq.get("name"))
2557 self.logger.debug(logging_text + step)
kuuse8b998e42019-07-30 15:22:16 +02002558 # Create the primitive for each sequence, i.e. "primitive": "touch"
kuuse0ca67472019-05-13 15:59:27 +02002559 primitive = seq.get('name')
kuuse8b998e42019-07-30 15:22:16 +02002560 mapped_primitive_params = self._get_terminate_primitive_params(seq, vnf_index)
2561 # The following 3 parameters are currently set to None for 'terminate':
2562 # vdu_id, vdu_count_index, vdu_name
tiernoe876f672020-02-13 14:34:48 +00002563
kuuseac3a8882019-10-03 10:48:06 +02002564 # Add sub-operation
kuuse8b998e42019-07-30 15:22:16 +02002565 self._add_suboperation(db_nslcmop,
kuuse8b998e42019-07-30 15:22:16 +02002566 vnf_index,
2567 vdu_id,
2568 vdu_count_index,
2569 vdu_name,
2570 primitive,
2571 mapped_primitive_params)
kuuseac3a8882019-10-03 10:48:06 +02002572 # Sub-operations: Call _ns_execute_primitive() instead of action()
quilesj7e13aeb2019-10-08 13:34:55 +02002573 try:
tiernoe876f672020-02-13 14:34:48 +00002574 result, result_detail = await self._ns_execute_primitive(vca_deployed["ee_id"], primitive,
2575 mapped_primitive_params)
2576 except LcmException:
2577 # this happens when VCA is not deployed. In this case it is not needed to terminate
2578 continue
2579 result_ok = ['COMPLETED', 'PARTIALLY_COMPLETED']
2580 if result not in result_ok:
2581 raise LcmException("terminate_primitive {} for vnf_member_index={} fails with "
2582 "error {}".format(seq.get("name"), vnf_index, result_detail))
2583 # set that this VCA do not need terminated
2584 db_update_entry = "_admin.deployed.VCA.{}.needed_terminate".format(vca_index)
2585 self.update_db_2("nsrs", db_nslcmop["nsInstanceId"], {db_update_entry: False})
2586
2587 if destroy_ee:
2588 await self.n2vc.delete_execution_environment(vca_deployed["ee_id"])
kuuse0ca67472019-05-13 15:59:27 +02002589
tierno51183952020-04-03 15:48:18 +00002590 async def _delete_all_N2VC(self, db_nsr: dict):
2591 self._write_all_config_status(db_nsr=db_nsr, status='TERMINATING')
2592 namespace = "." + db_nsr["_id"]
tiernof59ad6c2020-04-08 12:50:52 +00002593 try:
2594 await self.n2vc.delete_namespace(namespace=namespace, total_timeout=self.timeout_charm_delete)
2595 except N2VCNotFound: # already deleted. Skip
2596 pass
tierno51183952020-04-03 15:48:18 +00002597 self._write_all_config_status(db_nsr=db_nsr, status='DELETED')
quilesj3655ae02019-12-12 16:08:35 +00002598
tiernoe876f672020-02-13 14:34:48 +00002599 async def _terminate_RO(self, logging_text, nsr_deployed, nsr_id, nslcmop_id, stage):
2600 """
2601 Terminates a deployment from RO
2602 :param logging_text:
2603 :param nsr_deployed: db_nsr._admin.deployed
2604 :param nsr_id:
2605 :param nslcmop_id:
2606 :param stage: list of string with the content to write on db_nslcmop.detailed-status.
2607 this method will update only the index 2, but it will write on database the concatenated content of the list
2608 :return:
2609 """
2610 db_nsr_update = {}
2611 failed_detail = []
2612 ro_nsr_id = ro_delete_action = None
2613 if nsr_deployed and nsr_deployed.get("RO"):
2614 ro_nsr_id = nsr_deployed["RO"].get("nsr_id")
2615 ro_delete_action = nsr_deployed["RO"].get("nsr_delete_action_id")
2616 try:
2617 if ro_nsr_id:
2618 stage[2] = "Deleting ns from VIM."
2619 db_nsr_update["detailed-status"] = " ".join(stage)
2620 self._write_op_status(nslcmop_id, stage)
2621 self.logger.debug(logging_text + stage[2])
2622 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2623 self._write_op_status(nslcmop_id, stage)
2624 desc = await self.RO.delete("ns", ro_nsr_id)
2625 ro_delete_action = desc["action_id"]
2626 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = ro_delete_action
2627 db_nsr_update["_admin.deployed.RO.nsr_id"] = None
2628 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2629 if ro_delete_action:
2630 # wait until NS is deleted from VIM
2631 stage[2] = "Waiting ns deleted from VIM."
2632 detailed_status_old = None
2633 self.logger.debug(logging_text + stage[2] + " RO_id={} ro_delete_action={}".format(ro_nsr_id,
2634 ro_delete_action))
2635 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2636 self._write_op_status(nslcmop_id, stage)
kuused124bfe2019-06-18 12:09:24 +02002637
tiernoe876f672020-02-13 14:34:48 +00002638 delete_timeout = 20 * 60 # 20 minutes
2639 while delete_timeout > 0:
2640 desc = await self.RO.show(
2641 "ns",
2642 item_id_name=ro_nsr_id,
2643 extra_item="action",
2644 extra_item_id=ro_delete_action)
2645
2646 # deploymentStatus
2647 self._on_update_ro_db(nsrs_id=nsr_id, ro_descriptor=desc)
2648
2649 ns_status, ns_status_info = self.RO.check_action_status(desc)
2650 if ns_status == "ERROR":
2651 raise ROclient.ROClientException(ns_status_info)
2652 elif ns_status == "BUILD":
2653 stage[2] = "Deleting from VIM {}".format(ns_status_info)
2654 elif ns_status == "ACTIVE":
2655 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
2656 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2657 break
2658 else:
2659 assert False, "ROclient.check_action_status returns unknown {}".format(ns_status)
2660 if stage[2] != detailed_status_old:
2661 detailed_status_old = stage[2]
2662 db_nsr_update["detailed-status"] = " ".join(stage)
2663 self._write_op_status(nslcmop_id, stage)
2664 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2665 await asyncio.sleep(5, loop=self.loop)
2666 delete_timeout -= 5
2667 else: # delete_timeout <= 0:
2668 raise ROclient.ROClientException("Timeout waiting ns deleted from VIM")
2669
2670 except Exception as e:
2671 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2672 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2673 db_nsr_update["_admin.deployed.RO.nsr_id"] = None
2674 db_nsr_update["_admin.deployed.RO.nsr_status"] = "DELETED"
2675 db_nsr_update["_admin.deployed.RO.nsr_delete_action_id"] = None
2676 self.logger.debug(logging_text + "RO_ns_id={} already deleted".format(ro_nsr_id))
2677 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
tiernoa2143262020-03-27 16:20:40 +00002678 failed_detail.append("delete conflict: {}".format(e))
2679 self.logger.debug(logging_text + "RO_ns_id={} delete conflict: {}".format(ro_nsr_id, e))
tiernoe876f672020-02-13 14:34:48 +00002680 else:
tiernoa2143262020-03-27 16:20:40 +00002681 failed_detail.append("delete error: {}".format(e))
2682 self.logger.error(logging_text + "RO_ns_id={} delete error: {}".format(ro_nsr_id, e))
tiernoe876f672020-02-13 14:34:48 +00002683
2684 # Delete nsd
2685 if not failed_detail and deep_get(nsr_deployed, ("RO", "nsd_id")):
2686 ro_nsd_id = nsr_deployed["RO"]["nsd_id"]
2687 try:
2688 stage[2] = "Deleting nsd from RO."
2689 db_nsr_update["detailed-status"] = " ".join(stage)
2690 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2691 self._write_op_status(nslcmop_id, stage)
2692 await self.RO.delete("nsd", ro_nsd_id)
2693 self.logger.debug(logging_text + "ro_nsd_id={} deleted".format(ro_nsd_id))
2694 db_nsr_update["_admin.deployed.RO.nsd_id"] = None
2695 except Exception as e:
2696 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2697 db_nsr_update["_admin.deployed.RO.nsd_id"] = None
2698 self.logger.debug(logging_text + "ro_nsd_id={} already deleted".format(ro_nsd_id))
2699 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
2700 failed_detail.append("ro_nsd_id={} delete conflict: {}".format(ro_nsd_id, e))
2701 self.logger.debug(logging_text + failed_detail[-1])
2702 else:
2703 failed_detail.append("ro_nsd_id={} delete error: {}".format(ro_nsd_id, e))
2704 self.logger.error(logging_text + failed_detail[-1])
2705
2706 if not failed_detail and deep_get(nsr_deployed, ("RO", "vnfd")):
2707 for index, vnf_deployed in enumerate(nsr_deployed["RO"]["vnfd"]):
2708 if not vnf_deployed or not vnf_deployed["id"]:
2709 continue
2710 try:
2711 ro_vnfd_id = vnf_deployed["id"]
2712 stage[2] = "Deleting member_vnf_index={} ro_vnfd_id={} from RO.".format(
2713 vnf_deployed["member-vnf-index"], ro_vnfd_id)
2714 db_nsr_update["detailed-status"] = " ".join(stage)
2715 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2716 self._write_op_status(nslcmop_id, stage)
2717 await self.RO.delete("vnfd", ro_vnfd_id)
2718 self.logger.debug(logging_text + "ro_vnfd_id={} deleted".format(ro_vnfd_id))
2719 db_nsr_update["_admin.deployed.RO.vnfd.{}.id".format(index)] = None
2720 except Exception as e:
2721 if isinstance(e, ROclient.ROClientException) and e.http_code == 404: # not found
2722 db_nsr_update["_admin.deployed.RO.vnfd.{}.id".format(index)] = None
2723 self.logger.debug(logging_text + "ro_vnfd_id={} already deleted ".format(ro_vnfd_id))
2724 elif isinstance(e, ROclient.ROClientException) and e.http_code == 409: # conflict
2725 failed_detail.append("ro_vnfd_id={} delete conflict: {}".format(ro_vnfd_id, e))
2726 self.logger.debug(logging_text + failed_detail[-1])
2727 else:
2728 failed_detail.append("ro_vnfd_id={} delete error: {}".format(ro_vnfd_id, e))
2729 self.logger.error(logging_text + failed_detail[-1])
2730
tiernoa2143262020-03-27 16:20:40 +00002731 if failed_detail:
2732 stage[2] = "Error deleting from VIM"
2733 else:
2734 stage[2] = "Deleted from VIM"
tiernoe876f672020-02-13 14:34:48 +00002735 db_nsr_update["detailed-status"] = " ".join(stage)
2736 self.update_db_2("nsrs", nsr_id, db_nsr_update)
2737 self._write_op_status(nslcmop_id, stage)
2738
2739 if failed_detail:
tiernoa2143262020-03-27 16:20:40 +00002740 raise LcmException("; ".join(failed_detail))
tiernoe876f672020-02-13 14:34:48 +00002741
2742 async def terminate(self, nsr_id, nslcmop_id):
kuused124bfe2019-06-18 12:09:24 +02002743 # Try to lock HA task here
2744 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
2745 if not task_is_locked_by_me:
2746 return
2747
tierno59d22d22018-09-25 18:10:19 +02002748 logging_text = "Task ns={} terminate={} ".format(nsr_id, nslcmop_id)
2749 self.logger.debug(logging_text + "Enter")
tiernoe876f672020-02-13 14:34:48 +00002750 timeout_ns_terminate = self.timeout_ns_terminate
tierno59d22d22018-09-25 18:10:19 +02002751 db_nsr = None
2752 db_nslcmop = None
2753 exc = None
tiernoe876f672020-02-13 14:34:48 +00002754 error_list = [] # annotates all failed error messages
tierno59d22d22018-09-25 18:10:19 +02002755 db_nslcmop_update = {}
tiernoc2564fe2019-01-28 16:18:56 +00002756 autoremove = False # autoremove after terminated
tiernoe876f672020-02-13 14:34:48 +00002757 tasks_dict_info = {}
2758 db_nsr_update = {}
2759 stage = ["Stage 1/3: Preparing task.", "Waiting for previous operations to terminate.", ""]
2760 # ^ contains [stage, step, VIM-status]
tierno59d22d22018-09-25 18:10:19 +02002761 try:
kuused124bfe2019-06-18 12:09:24 +02002762 # wait for any previous tasks in process
2763 await self.lcm_tasks.waitfor_related_HA("ns", 'nslcmops', nslcmop_id)
2764
tiernoe876f672020-02-13 14:34:48 +00002765 stage[1] = "Getting nslcmop={} from db.".format(nslcmop_id)
2766 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
2767 operation_params = db_nslcmop.get("operationParams") or {}
2768 if operation_params.get("timeout_ns_terminate"):
2769 timeout_ns_terminate = operation_params["timeout_ns_terminate"]
2770 stage[1] = "Getting nsr={} from db.".format(nsr_id)
2771 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
2772
2773 db_nsr_update["operational-status"] = "terminating"
2774 db_nsr_update["config-status"] = "terminating"
quilesj4cda56b2019-12-05 10:02:20 +00002775 self._write_ns_status(
2776 nsr_id=nsr_id,
2777 ns_state="TERMINATING",
2778 current_operation="TERMINATING",
tiernoe876f672020-02-13 14:34:48 +00002779 current_operation_id=nslcmop_id,
2780 other_update=db_nsr_update
quilesj4cda56b2019-12-05 10:02:20 +00002781 )
quilesj3655ae02019-12-12 16:08:35 +00002782 self._write_op_status(
2783 op_id=nslcmop_id,
tiernoe876f672020-02-13 14:34:48 +00002784 queuePosition=0,
2785 stage=stage
quilesj3655ae02019-12-12 16:08:35 +00002786 )
tiernoe876f672020-02-13 14:34:48 +00002787 nsr_deployed = deepcopy(db_nsr["_admin"].get("deployed")) or {}
tierno59d22d22018-09-25 18:10:19 +02002788 if db_nsr["_admin"]["nsState"] == "NOT_INSTANTIATED":
2789 return
tierno59d22d22018-09-25 18:10:19 +02002790
tiernoe876f672020-02-13 14:34:48 +00002791 stage[1] = "Getting vnf descriptors from db."
2792 db_vnfrs_list = self.db.get_list("vnfrs", {"nsr-id-ref": nsr_id})
2793 db_vnfds_from_id = {}
2794 db_vnfds_from_member_index = {}
2795 # Loop over VNFRs
2796 for vnfr in db_vnfrs_list:
2797 vnfd_id = vnfr["vnfd-id"]
2798 if vnfd_id not in db_vnfds_from_id:
2799 vnfd = self.db.get_one("vnfds", {"_id": vnfd_id})
2800 db_vnfds_from_id[vnfd_id] = vnfd
2801 db_vnfds_from_member_index[vnfr["member-vnf-index-ref"]] = db_vnfds_from_id[vnfd_id]
calvinosanch9f9c6f22019-11-04 13:37:39 +01002802
tiernoe876f672020-02-13 14:34:48 +00002803 # Destroy individual execution environments when there are terminating primitives.
2804 # Rest of EE will be deleted at once
2805 if not operation_params.get("skip_terminate_primitives"):
2806 stage[0] = "Stage 2/3 execute terminating primitives."
2807 stage[1] = "Looking execution environment that needs terminate."
2808 self.logger.debug(logging_text + stage[1])
2809 for vca_index, vca in enumerate(get_iterable(nsr_deployed, "VCA")):
2810 config_descriptor = None
2811 if not vca or not vca.get("ee_id") or not vca.get("needed_terminate"):
2812 continue
2813 if not vca.get("member-vnf-index"):
2814 # ns
2815 config_descriptor = db_nsr.get("ns-configuration")
2816 elif vca.get("vdu_id"):
2817 db_vnfd = db_vnfds_from_member_index[vca["member-vnf-index"]]
2818 vdud = next((vdu for vdu in db_vnfd.get("vdu", ()) if vdu["id"] == vca.get("vdu_id")), None)
2819 if vdud:
2820 config_descriptor = vdud.get("vdu-configuration")
2821 elif vca.get("kdu_name"):
2822 db_vnfd = db_vnfds_from_member_index[vca["member-vnf-index"]]
2823 kdud = next((kdu for kdu in db_vnfd.get("kdu", ()) if kdu["name"] == vca.get("kdu_name")), None)
2824 if kdud:
2825 config_descriptor = kdud.get("kdu-configuration")
2826 else:
2827 config_descriptor = db_vnfds_from_member_index[vca["member-vnf-index"]].get("vnf-configuration")
2828 task = asyncio.ensure_future(self.destroy_N2VC(logging_text, db_nslcmop, vca, config_descriptor,
2829 vca_index, False))
2830 tasks_dict_info[task] = "Terminating VCA {}".format(vca.get("ee_id"))
tierno59d22d22018-09-25 18:10:19 +02002831
tiernoe876f672020-02-13 14:34:48 +00002832 # wait for pending tasks of terminate primitives
2833 if tasks_dict_info:
2834 self.logger.debug(logging_text + 'Waiting for terminate primitive pending tasks...')
2835 error_list = await self._wait_for_tasks(logging_text, tasks_dict_info,
2836 min(self.timeout_charm_delete, timeout_ns_terminate),
2837 stage, nslcmop_id)
2838 if error_list:
2839 return # raise LcmException("; ".join(error_list))
2840 tasks_dict_info.clear()
tierno82974b22018-11-27 21:55:36 +00002841
tiernoe876f672020-02-13 14:34:48 +00002842 # remove All execution environments at once
2843 stage[0] = "Stage 3/3 delete all."
quilesj3655ae02019-12-12 16:08:35 +00002844
tierno49676be2020-04-07 16:34:35 +00002845 if nsr_deployed.get("VCA"):
2846 stage[1] = "Deleting all execution environments."
2847 self.logger.debug(logging_text + stage[1])
2848 task_delete_ee = asyncio.ensure_future(asyncio.wait_for(self._delete_all_N2VC(db_nsr=db_nsr),
2849 timeout=self.timeout_charm_delete))
2850 # task_delete_ee = asyncio.ensure_future(self.n2vc.delete_namespace(namespace="." + nsr_id))
2851 tasks_dict_info[task_delete_ee] = "Terminating all VCA"
tierno59d22d22018-09-25 18:10:19 +02002852
tiernoe876f672020-02-13 14:34:48 +00002853 # Delete from k8scluster
2854 stage[1] = "Deleting KDUs."
2855 self.logger.debug(logging_text + stage[1])
2856 # print(nsr_deployed)
2857 for kdu in get_iterable(nsr_deployed, "K8s"):
2858 if not kdu or not kdu.get("kdu-instance"):
2859 continue
2860 kdu_instance = kdu.get("kdu-instance")
tiernoa2143262020-03-27 16:20:40 +00002861 if kdu.get("k8scluster-type") in self.k8scluster_map:
tiernoe876f672020-02-13 14:34:48 +00002862 task_delete_kdu_instance = asyncio.ensure_future(
tiernoa2143262020-03-27 16:20:40 +00002863 self.k8scluster_map[kdu["k8scluster-type"]].uninstall(
2864 cluster_uuid=kdu.get("k8scluster-uuid"),
2865 kdu_instance=kdu_instance))
tiernoe876f672020-02-13 14:34:48 +00002866 else:
2867 self.logger.error(logging_text + "Unknown k8s deployment type {}".
2868 format(kdu.get("k8scluster-type")))
2869 continue
2870 tasks_dict_info[task_delete_kdu_instance] = "Terminating KDU '{}'".format(kdu.get("kdu-name"))
tierno59d22d22018-09-25 18:10:19 +02002871
2872 # remove from RO
tiernoe876f672020-02-13 14:34:48 +00002873 stage[1] = "Deleting ns from VIM."
2874 task_delete_ro = asyncio.ensure_future(
2875 self._terminate_RO(logging_text, nsr_deployed, nsr_id, nslcmop_id, stage))
2876 tasks_dict_info[task_delete_ro] = "Removing deployment from VIM"
tierno59d22d22018-09-25 18:10:19 +02002877
tiernoe876f672020-02-13 14:34:48 +00002878 # rest of staff will be done at finally
2879
2880 except (ROclient.ROClientException, DbException, LcmException, N2VCException) as e:
2881 self.logger.error(logging_text + "Exit Exception {}".format(e))
2882 exc = e
2883 except asyncio.CancelledError:
2884 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(stage[1]))
2885 exc = "Operation was cancelled"
2886 except Exception as e:
2887 exc = traceback.format_exc()
2888 self.logger.critical(logging_text + "Exit Exception while '{}': {}".format(stage[1], e), exc_info=True)
2889 finally:
2890 if exc:
2891 error_list.append(str(exc))
tierno59d22d22018-09-25 18:10:19 +02002892 try:
tiernoe876f672020-02-13 14:34:48 +00002893 # wait for pending tasks
2894 if tasks_dict_info:
2895 stage[1] = "Waiting for terminate pending tasks."
2896 self.logger.debug(logging_text + stage[1])
2897 error_list += await self._wait_for_tasks(logging_text, tasks_dict_info, timeout_ns_terminate,
2898 stage, nslcmop_id)
2899 stage[1] = stage[2] = ""
2900 except asyncio.CancelledError:
2901 error_list.append("Cancelled")
2902 # TODO cancell all tasks
2903 except Exception as exc:
2904 error_list.append(str(exc))
2905 # update status at database
2906 if error_list:
2907 error_detail = "; ".join(error_list)
2908 # self.logger.error(logging_text + error_detail)
tiernoa2143262020-03-27 16:20:40 +00002909 error_description_nslcmop = 'Stage: {}. Detail: {}'.format(stage[0], error_detail)
2910 error_description_nsr = 'Operation: TERMINATING.{}, Stage {}.'.format(nslcmop_id, stage[0])
tierno59d22d22018-09-25 18:10:19 +02002911
tierno59d22d22018-09-25 18:10:19 +02002912 db_nsr_update["operational-status"] = "failed"
tiernoa2143262020-03-27 16:20:40 +00002913 db_nsr_update["detailed-status"] = error_description_nsr + " Detail: " + error_detail
tiernoe876f672020-02-13 14:34:48 +00002914 db_nslcmop_update["detailed-status"] = error_detail
2915 nslcmop_operation_state = "FAILED"
2916 ns_state = "BROKEN"
tierno59d22d22018-09-25 18:10:19 +02002917 else:
tiernoa2143262020-03-27 16:20:40 +00002918 error_detail = None
tiernoe876f672020-02-13 14:34:48 +00002919 error_description_nsr = error_description_nslcmop = None
2920 ns_state = "NOT_INSTANTIATED"
tierno59d22d22018-09-25 18:10:19 +02002921 db_nsr_update["operational-status"] = "terminated"
2922 db_nsr_update["detailed-status"] = "Done"
2923 db_nsr_update["_admin.nsState"] = "NOT_INSTANTIATED"
2924 db_nslcmop_update["detailed-status"] = "Done"
tiernoe876f672020-02-13 14:34:48 +00002925 nslcmop_operation_state = "COMPLETED"
tierno59d22d22018-09-25 18:10:19 +02002926
tiernoe876f672020-02-13 14:34:48 +00002927 if db_nsr:
2928 self._write_ns_status(
2929 nsr_id=nsr_id,
2930 ns_state=ns_state,
2931 current_operation="IDLE",
2932 current_operation_id=None,
2933 error_description=error_description_nsr,
tiernoa2143262020-03-27 16:20:40 +00002934 error_detail=error_detail,
tiernoe876f672020-02-13 14:34:48 +00002935 other_update=db_nsr_update
2936 )
2937 if db_nslcmop:
2938 self._write_op_status(
2939 op_id=nslcmop_id,
2940 stage="",
2941 error_message=error_description_nslcmop,
2942 operation_state=nslcmop_operation_state,
2943 other_update=db_nslcmop_update,
2944 )
2945 autoremove = operation_params.get("autoremove", False)
tierno59d22d22018-09-25 18:10:19 +02002946 if nslcmop_operation_state:
2947 try:
2948 await self.msg.aiowrite("ns", "terminated", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
tiernoc2564fe2019-01-28 16:18:56 +00002949 "operationState": nslcmop_operation_state,
2950 "autoremove": autoremove},
tierno8a518872018-12-21 13:42:14 +00002951 loop=self.loop)
tierno59d22d22018-09-25 18:10:19 +02002952 except Exception as e:
2953 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
quilesj7e13aeb2019-10-08 13:34:55 +02002954
tierno59d22d22018-09-25 18:10:19 +02002955 self.logger.debug(logging_text + "Exit")
2956 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_terminate")
2957
tiernoe876f672020-02-13 14:34:48 +00002958 async def _wait_for_tasks(self, logging_text, created_tasks_info, timeout, stage, nslcmop_id, nsr_id=None):
2959 time_start = time()
tiernoa2143262020-03-27 16:20:40 +00002960 error_detail_list = []
tiernoe876f672020-02-13 14:34:48 +00002961 error_list = []
2962 pending_tasks = list(created_tasks_info.keys())
2963 num_tasks = len(pending_tasks)
2964 num_done = 0
2965 stage[1] = "{}/{}.".format(num_done, num_tasks)
2966 self._write_op_status(nslcmop_id, stage)
tiernoe876f672020-02-13 14:34:48 +00002967 while pending_tasks:
tiernoa2143262020-03-27 16:20:40 +00002968 new_error = None
tiernoe876f672020-02-13 14:34:48 +00002969 _timeout = timeout + time_start - time()
2970 done, pending_tasks = await asyncio.wait(pending_tasks, timeout=_timeout,
2971 return_when=asyncio.FIRST_COMPLETED)
2972 num_done += len(done)
2973 if not done: # Timeout
2974 for task in pending_tasks:
tiernoa2143262020-03-27 16:20:40 +00002975 new_error = created_tasks_info[task] + ": Timeout"
2976 error_detail_list.append(new_error)
2977 error_list.append(new_error)
tiernoe876f672020-02-13 14:34:48 +00002978 break
2979 for task in done:
2980 if task.cancelled():
tierno067e04a2020-03-31 12:53:13 +00002981 exc = "Cancelled"
tiernoe876f672020-02-13 14:34:48 +00002982 else:
2983 exc = task.exception()
tierno067e04a2020-03-31 12:53:13 +00002984 if exc:
2985 if isinstance(exc, asyncio.TimeoutError):
2986 exc = "Timeout"
2987 new_error = created_tasks_info[task] + ": {}".format(exc)
2988 error_list.append(created_tasks_info[task])
2989 error_detail_list.append(new_error)
tierno28c63da2020-04-20 16:28:56 +00002990 if isinstance(exc, (str, DbException, N2VCException, ROclient.ROClientException, LcmException,
2991 K8sException)):
tierno067e04a2020-03-31 12:53:13 +00002992 self.logger.error(logging_text + new_error)
tiernoe876f672020-02-13 14:34:48 +00002993 else:
tierno067e04a2020-03-31 12:53:13 +00002994 exc_traceback = "".join(traceback.format_exception(None, exc, exc.__traceback__))
2995 self.logger.error(logging_text + created_tasks_info[task] + exc_traceback)
2996 else:
2997 self.logger.debug(logging_text + created_tasks_info[task] + ": Done")
tiernoe876f672020-02-13 14:34:48 +00002998 stage[1] = "{}/{}.".format(num_done, num_tasks)
2999 if new_error:
tiernoa2143262020-03-27 16:20:40 +00003000 stage[1] += " Errors: " + ". ".join(error_detail_list) + "."
tiernoe876f672020-02-13 14:34:48 +00003001 if nsr_id: # update also nsr
tiernoa2143262020-03-27 16:20:40 +00003002 self.update_db_2("nsrs", nsr_id, {"errorDescription": "Error at: " + ", ".join(error_list),
3003 "errorDetail": ". ".join(error_detail_list)})
tiernoe876f672020-02-13 14:34:48 +00003004 self._write_op_status(nslcmop_id, stage)
tiernoa2143262020-03-27 16:20:40 +00003005 return error_detail_list
tiernoe876f672020-02-13 14:34:48 +00003006
tiernoda964822019-01-14 15:53:47 +00003007 @staticmethod
3008 def _map_primitive_params(primitive_desc, params, instantiation_params):
3009 """
3010 Generates the params to be provided to charm before executing primitive. If user does not provide a parameter,
3011 The default-value is used. If it is between < > it look for a value at instantiation_params
3012 :param primitive_desc: portion of VNFD/NSD that describes primitive
3013 :param params: Params provided by user
3014 :param instantiation_params: Instantiation params provided by user
3015 :return: a dictionary with the calculated params
3016 """
3017 calculated_params = {}
3018 for parameter in primitive_desc.get("parameter", ()):
3019 param_name = parameter["name"]
3020 if param_name in params:
3021 calculated_params[param_name] = params[param_name]
tierno98ad6ea2019-05-30 17:16:28 +00003022 elif "default-value" in parameter or "value" in parameter:
3023 if "value" in parameter:
3024 calculated_params[param_name] = parameter["value"]
3025 else:
3026 calculated_params[param_name] = parameter["default-value"]
3027 if isinstance(calculated_params[param_name], str) and calculated_params[param_name].startswith("<") \
3028 and calculated_params[param_name].endswith(">"):
3029 if calculated_params[param_name][1:-1] in instantiation_params:
3030 calculated_params[param_name] = instantiation_params[calculated_params[param_name][1:-1]]
tiernoda964822019-01-14 15:53:47 +00003031 else:
3032 raise LcmException("Parameter {} needed to execute primitive {} not provided".
tiernod8323042019-08-09 11:32:23 +00003033 format(calculated_params[param_name], primitive_desc["name"]))
tiernoda964822019-01-14 15:53:47 +00003034 else:
3035 raise LcmException("Parameter {} needed to execute primitive {} not provided".
3036 format(param_name, primitive_desc["name"]))
tierno59d22d22018-09-25 18:10:19 +02003037
tiernoda964822019-01-14 15:53:47 +00003038 if isinstance(calculated_params[param_name], (dict, list, tuple)):
3039 calculated_params[param_name] = yaml.safe_dump(calculated_params[param_name], default_flow_style=True,
3040 width=256)
3041 elif isinstance(calculated_params[param_name], str) and calculated_params[param_name].startswith("!!yaml "):
3042 calculated_params[param_name] = calculated_params[param_name][7:]
tiernoc3f2a822019-11-05 13:45:04 +00003043
3044 # add always ns_config_info if primitive name is config
3045 if primitive_desc["name"] == "config":
3046 if "ns_config_info" in instantiation_params:
3047 calculated_params["ns_config_info"] = instantiation_params["ns_config_info"]
tiernoda964822019-01-14 15:53:47 +00003048 return calculated_params
3049
tierno067e04a2020-03-31 12:53:13 +00003050 def _look_for_deployed_vca(self, deployed_vca, member_vnf_index, vdu_id, vdu_count_index, kdu_name=None):
tiernoe876f672020-02-13 14:34:48 +00003051 # find vca_deployed record for this action. Raise LcmException if not found or there is not any id.
3052 for vca in deployed_vca:
3053 if not vca:
3054 continue
3055 if member_vnf_index != vca["member-vnf-index"] or vdu_id != vca["vdu_id"]:
3056 continue
tiernoe876f672020-02-13 14:34:48 +00003057 if vdu_count_index is not None and vdu_count_index != vca["vdu_count_index"]:
3058 continue
3059 if kdu_name and kdu_name != vca["kdu_name"]:
3060 continue
3061 break
3062 else:
3063 # vca_deployed not found
tierno067e04a2020-03-31 12:53:13 +00003064 raise LcmException("charm for member_vnf_index={} vdu_id={} kdu_name={} vdu_count_index={} is not "
3065 "deployed".format(member_vnf_index, vdu_id, kdu_name, vdu_count_index))
quilesj7e13aeb2019-10-08 13:34:55 +02003066
tiernoe876f672020-02-13 14:34:48 +00003067 # get ee_id
3068 ee_id = vca.get("ee_id")
3069 if not ee_id:
tierno067e04a2020-03-31 12:53:13 +00003070 raise LcmException("charm for member_vnf_index={} vdu_id={} kdu_name={} vdu_count_index={} has not "
tiernoe876f672020-02-13 14:34:48 +00003071 "execution environment"
tierno067e04a2020-03-31 12:53:13 +00003072 .format(member_vnf_index, vdu_id, kdu_name, vdu_count_index))
tiernoe876f672020-02-13 14:34:48 +00003073 return ee_id
3074
3075 async def _ns_execute_primitive(self, ee_id, primitive, primitive_params, retries=0,
tierno067e04a2020-03-31 12:53:13 +00003076 retries_interval=30, timeout=None) -> (str, str):
tiernoda964822019-01-14 15:53:47 +00003077 try:
tierno98ad6ea2019-05-30 17:16:28 +00003078 if primitive == "config":
3079 primitive_params = {"params": primitive_params}
tierno2fc7ce52019-06-11 22:50:01 +00003080
quilesj7e13aeb2019-10-08 13:34:55 +02003081 while retries >= 0:
3082 try:
tierno067e04a2020-03-31 12:53:13 +00003083 output = await asyncio.wait_for(
3084 self.n2vc.exec_primitive(
3085 ee_id=ee_id,
3086 primitive_name=primitive,
3087 params_dict=primitive_params,
3088 progress_timeout=self.timeout_progress_primitive,
3089 total_timeout=self.timeout_primitive),
3090 timeout=timeout or self.timeout_primitive)
quilesj7e13aeb2019-10-08 13:34:55 +02003091 # execution was OK
3092 break
tierno067e04a2020-03-31 12:53:13 +00003093 except asyncio.CancelledError:
3094 raise
3095 except Exception as e: # asyncio.TimeoutError
3096 if isinstance(e, asyncio.TimeoutError):
3097 e = "Timeout"
quilesj7e13aeb2019-10-08 13:34:55 +02003098 retries -= 1
3099 if retries >= 0:
tierno73d8bd02019-11-18 17:33:27 +00003100 self.logger.debug('Error executing action {} on {} -> {}'.format(primitive, ee_id, e))
quilesj7e13aeb2019-10-08 13:34:55 +02003101 # wait and retry
3102 await asyncio.sleep(retries_interval, loop=self.loop)
tierno73d8bd02019-11-18 17:33:27 +00003103 else:
tierno067e04a2020-03-31 12:53:13 +00003104 return 'FAILED', str(e)
quilesj7e13aeb2019-10-08 13:34:55 +02003105
tiernoe876f672020-02-13 14:34:48 +00003106 return 'COMPLETED', output
quilesj7e13aeb2019-10-08 13:34:55 +02003107
tierno067e04a2020-03-31 12:53:13 +00003108 except (LcmException, asyncio.CancelledError):
tiernoe876f672020-02-13 14:34:48 +00003109 raise
quilesj7e13aeb2019-10-08 13:34:55 +02003110 except Exception as e:
tiernoe876f672020-02-13 14:34:48 +00003111 return 'FAIL', 'Error executing action {}: {}'.format(primitive, e)
tierno59d22d22018-09-25 18:10:19 +02003112
3113 async def action(self, nsr_id, nslcmop_id):
kuused124bfe2019-06-18 12:09:24 +02003114
3115 # Try to lock HA task here
3116 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
3117 if not task_is_locked_by_me:
3118 return
3119
tierno59d22d22018-09-25 18:10:19 +02003120 logging_text = "Task ns={} action={} ".format(nsr_id, nslcmop_id)
3121 self.logger.debug(logging_text + "Enter")
3122 # get all needed from database
3123 db_nsr = None
3124 db_nslcmop = None
tiernoe876f672020-02-13 14:34:48 +00003125 db_nsr_update = {}
tierno59d22d22018-09-25 18:10:19 +02003126 db_nslcmop_update = {}
3127 nslcmop_operation_state = None
tierno067e04a2020-03-31 12:53:13 +00003128 error_description_nslcmop = None
tierno59d22d22018-09-25 18:10:19 +02003129 exc = None
3130 try:
kuused124bfe2019-06-18 12:09:24 +02003131 # wait for any previous tasks in process
tierno3cf81a32019-11-11 17:07:00 +00003132 step = "Waiting for previous operations to terminate"
kuused124bfe2019-06-18 12:09:24 +02003133 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
3134
quilesj4cda56b2019-12-05 10:02:20 +00003135 self._write_ns_status(
3136 nsr_id=nsr_id,
3137 ns_state=None,
3138 current_operation="RUNNING ACTION",
3139 current_operation_id=nslcmop_id
3140 )
3141
tierno59d22d22018-09-25 18:10:19 +02003142 step = "Getting information from database"
3143 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
3144 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
tiernoda964822019-01-14 15:53:47 +00003145
tiernoe4f7e6c2018-11-27 14:55:30 +00003146 nsr_deployed = db_nsr["_admin"].get("deployed")
tierno1b633412019-02-25 16:48:23 +00003147 vnf_index = db_nslcmop["operationParams"].get("member_vnf_index")
tierno59d22d22018-09-25 18:10:19 +02003148 vdu_id = db_nslcmop["operationParams"].get("vdu_id")
calvinosanch9f9c6f22019-11-04 13:37:39 +01003149 kdu_name = db_nslcmop["operationParams"].get("kdu_name")
tiernoe4f7e6c2018-11-27 14:55:30 +00003150 vdu_count_index = db_nslcmop["operationParams"].get("vdu_count_index")
tierno067e04a2020-03-31 12:53:13 +00003151 primitive = db_nslcmop["operationParams"]["primitive"]
3152 primitive_params = db_nslcmop["operationParams"]["primitive_params"]
3153 timeout_ns_action = db_nslcmop["operationParams"].get("timeout_ns_action", self.timeout_primitive)
tierno59d22d22018-09-25 18:10:19 +02003154
tierno1b633412019-02-25 16:48:23 +00003155 if vnf_index:
3156 step = "Getting vnfr from database"
3157 db_vnfr = self.db.get_one("vnfrs", {"member-vnf-index-ref": vnf_index, "nsr-id-ref": nsr_id})
3158 step = "Getting vnfd from database"
3159 db_vnfd = self.db.get_one("vnfds", {"_id": db_vnfr["vnfd-id"]})
3160 else:
tierno067e04a2020-03-31 12:53:13 +00003161 step = "Getting nsd from database"
3162 db_nsd = self.db.get_one("nsds", {"_id": db_nsr["nsd-id"]})
tiernoda964822019-01-14 15:53:47 +00003163
tierno82974b22018-11-27 21:55:36 +00003164 # for backward compatibility
3165 if nsr_deployed and isinstance(nsr_deployed.get("VCA"), dict):
3166 nsr_deployed["VCA"] = list(nsr_deployed["VCA"].values())
3167 db_nsr_update["_admin.deployed.VCA"] = nsr_deployed["VCA"]
3168 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3169
tiernoda964822019-01-14 15:53:47 +00003170 # look for primitive
3171 config_primitive_desc = None
3172 if vdu_id:
3173 for vdu in get_iterable(db_vnfd, "vdu"):
3174 if vdu_id == vdu["id"]:
tierno067e04a2020-03-31 12:53:13 +00003175 for config_primitive in deep_get(vdu, ("vdu-configuration", "config-primitive"), ()):
tiernoda964822019-01-14 15:53:47 +00003176 if config_primitive["name"] == primitive:
3177 config_primitive_desc = config_primitive
3178 break
tierno067e04a2020-03-31 12:53:13 +00003179 break
calvinosanch9f9c6f22019-11-04 13:37:39 +01003180 elif kdu_name:
tierno067e04a2020-03-31 12:53:13 +00003181 for kdu in get_iterable(db_vnfd, "kdu"):
3182 if kdu_name == kdu["name"]:
3183 for config_primitive in deep_get(kdu, ("kdu-configuration", "config-primitive"), ()):
3184 if config_primitive["name"] == primitive:
3185 config_primitive_desc = config_primitive
3186 break
3187 break
tierno1b633412019-02-25 16:48:23 +00003188 elif vnf_index:
tierno067e04a2020-03-31 12:53:13 +00003189 for config_primitive in deep_get(db_vnfd, ("vnf-configuration", "config-primitive"), ()):
tierno1b633412019-02-25 16:48:23 +00003190 if config_primitive["name"] == primitive:
3191 config_primitive_desc = config_primitive
3192 break
3193 else:
tierno067e04a2020-03-31 12:53:13 +00003194 for config_primitive in deep_get(db_nsd, ("ns-configuration", "config-primitive"), ()):
tierno1b633412019-02-25 16:48:23 +00003195 if config_primitive["name"] == primitive:
3196 config_primitive_desc = config_primitive
3197 break
tiernoda964822019-01-14 15:53:47 +00003198
tierno067e04a2020-03-31 12:53:13 +00003199 if not config_primitive_desc and not (kdu_name and primitive in ("upgrade", "rollback", "status")):
tierno1b633412019-02-25 16:48:23 +00003200 raise LcmException("Primitive {} not found at [ns|vnf|vdu]-configuration:config-primitive ".
3201 format(primitive))
3202
tierno1b633412019-02-25 16:48:23 +00003203 if vnf_index:
tierno626e0152019-11-29 14:16:16 +00003204 if vdu_id:
3205 vdur = next((x for x in db_vnfr["vdur"] if x["vdu-id-ref"] == vdu_id), None)
tierno067e04a2020-03-31 12:53:13 +00003206 desc_params = self._format_additional_params(vdur.get("additionalParams"))
3207 elif kdu_name:
3208 kdur = next((x for x in db_vnfr["kdur"] if x["kdu-name"] == kdu_name), None)
3209 desc_params = self._format_additional_params(kdur.get("additionalParams"))
3210 else:
3211 desc_params = self._format_additional_params(db_vnfr.get("additionalParamsForVnf"))
tierno1b633412019-02-25 16:48:23 +00003212 else:
tierno067e04a2020-03-31 12:53:13 +00003213 desc_params = self._format_additional_params(db_nsr.get("additionalParamsForNs"))
tiernoda964822019-01-14 15:53:47 +00003214
Dominik Fleischmann771c32b2020-04-07 12:39:36 +02003215 if kdu_name:
3216 kdu_action = True if not deep_get(kdu, ("kdu-configuration", "juju")) else False
3217
tiernoda964822019-01-14 15:53:47 +00003218 # TODO check if ns is in a proper status
Dominik Fleischmann771c32b2020-04-07 12:39:36 +02003219 if kdu_name and (primitive in ("upgrade", "rollback", "status") or kdu_action):
tierno067e04a2020-03-31 12:53:13 +00003220 # kdur and desc_params already set from before
3221 if primitive_params:
3222 desc_params.update(primitive_params)
3223 # TODO Check if we will need something at vnf level
3224 for index, kdu in enumerate(get_iterable(nsr_deployed, "K8s")):
3225 if kdu_name == kdu["kdu-name"] and kdu["member-vnf-index"] == vnf_index:
3226 break
3227 else:
3228 raise LcmException("KDU '{}' for vnf '{}' not deployed".format(kdu_name, vnf_index))
quilesj7e13aeb2019-10-08 13:34:55 +02003229
tierno067e04a2020-03-31 12:53:13 +00003230 if kdu.get("k8scluster-type") not in self.k8scluster_map:
3231 msg = "unknown k8scluster-type '{}'".format(kdu.get("k8scluster-type"))
3232 raise LcmException(msg)
3233
3234 db_dict = {"collection": "nsrs",
3235 "filter": {"_id": nsr_id},
3236 "path": "_admin.deployed.K8s.{}".format(index)}
3237 self.logger.debug(logging_text + "Exec k8s {} on {}.{}".format(primitive, vnf_index, kdu_name))
3238 step = "Executing kdu {}".format(primitive)
3239 if primitive == "upgrade":
3240 if desc_params.get("kdu_model"):
3241 kdu_model = desc_params.get("kdu_model")
3242 del desc_params["kdu_model"]
3243 else:
3244 kdu_model = kdu.get("kdu-model")
3245 parts = kdu_model.split(sep=":")
3246 if len(parts) == 2:
3247 kdu_model = parts[0]
3248
3249 detailed_status = await asyncio.wait_for(
3250 self.k8scluster_map[kdu["k8scluster-type"]].upgrade(
3251 cluster_uuid=kdu.get("k8scluster-uuid"),
3252 kdu_instance=kdu.get("kdu-instance"),
3253 atomic=True, kdu_model=kdu_model,
3254 params=desc_params, db_dict=db_dict,
3255 timeout=timeout_ns_action),
3256 timeout=timeout_ns_action + 10)
3257 self.logger.debug(logging_text + " Upgrade of kdu {} done".format(detailed_status))
3258 elif primitive == "rollback":
3259 detailed_status = await asyncio.wait_for(
3260 self.k8scluster_map[kdu["k8scluster-type"]].rollback(
3261 cluster_uuid=kdu.get("k8scluster-uuid"),
3262 kdu_instance=kdu.get("kdu-instance"),
3263 db_dict=db_dict),
3264 timeout=timeout_ns_action)
3265 elif primitive == "status":
3266 detailed_status = await asyncio.wait_for(
3267 self.k8scluster_map[kdu["k8scluster-type"]].status_kdu(
3268 cluster_uuid=kdu.get("k8scluster-uuid"),
3269 kdu_instance=kdu.get("kdu-instance")),
3270 timeout=timeout_ns_action)
Dominik Fleischmann771c32b2020-04-07 12:39:36 +02003271 else:
3272 kdu_instance = kdu.get("kdu-instance") or "{}-{}".format(kdu["kdu-name"], nsr_id)
3273 params = self._map_primitive_params(config_primitive_desc, primitive_params, desc_params)
3274
3275 detailed_status = await asyncio.wait_for(
3276 self.k8scluster_map[kdu["k8scluster-type"]].exec_primitive(
3277 cluster_uuid=kdu.get("k8scluster-uuid"),
3278 kdu_instance=kdu_instance,
3279 primitive_name=primitive,
3280 params=params, db_dict=db_dict,
3281 timeout=timeout_ns_action),
3282 timeout=timeout_ns_action)
tierno067e04a2020-03-31 12:53:13 +00003283
3284 if detailed_status:
3285 nslcmop_operation_state = 'COMPLETED'
3286 else:
3287 detailed_status = ''
3288 nslcmop_operation_state = 'FAILED'
tierno067e04a2020-03-31 12:53:13 +00003289 else:
3290 nslcmop_operation_state, detailed_status = await self._ns_execute_primitive(
3291 self._look_for_deployed_vca(nsr_deployed["VCA"],
3292 member_vnf_index=vnf_index,
3293 vdu_id=vdu_id,
3294 vdu_count_index=vdu_count_index),
3295 primitive=primitive,
3296 primitive_params=self._map_primitive_params(config_primitive_desc, primitive_params, desc_params),
3297 timeout=timeout_ns_action)
3298
3299 db_nslcmop_update["detailed-status"] = detailed_status
3300 error_description_nslcmop = detailed_status if nslcmop_operation_state == "FAILED" else ""
3301 self.logger.debug(logging_text + " task Done with result {} {}".format(nslcmop_operation_state,
3302 detailed_status))
tierno59d22d22018-09-25 18:10:19 +02003303 return # database update is called inside finally
3304
tiernof59ad6c2020-04-08 12:50:52 +00003305 except (DbException, LcmException, N2VCException, K8sException) as e:
tierno59d22d22018-09-25 18:10:19 +02003306 self.logger.error(logging_text + "Exit Exception {}".format(e))
3307 exc = e
3308 except asyncio.CancelledError:
3309 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(step))
3310 exc = "Operation was cancelled"
tierno067e04a2020-03-31 12:53:13 +00003311 except asyncio.TimeoutError:
3312 self.logger.error(logging_text + "Timeout while '{}'".format(step))
3313 exc = "Timeout"
tierno59d22d22018-09-25 18:10:19 +02003314 except Exception as e:
3315 exc = traceback.format_exc()
3316 self.logger.critical(logging_text + "Exit Exception {} {}".format(type(e).__name__, e), exc_info=True)
3317 finally:
tierno067e04a2020-03-31 12:53:13 +00003318 if exc:
3319 db_nslcmop_update["detailed-status"] = detailed_status = error_description_nslcmop = \
kuuse0ca67472019-05-13 15:59:27 +02003320 "FAILED {}: {}".format(step, exc)
tierno067e04a2020-03-31 12:53:13 +00003321 nslcmop_operation_state = "FAILED"
3322 if db_nsr:
3323 self._write_ns_status(
3324 nsr_id=nsr_id,
3325 ns_state=db_nsr["nsState"], # TODO check if degraded. For the moment use previous status
3326 current_operation="IDLE",
3327 current_operation_id=None,
3328 # error_description=error_description_nsr,
3329 # error_detail=error_detail,
3330 other_update=db_nsr_update
3331 )
3332
3333 if db_nslcmop:
3334 self._write_op_status(
3335 op_id=nslcmop_id,
3336 stage="",
3337 error_message=error_description_nslcmop,
3338 operation_state=nslcmop_operation_state,
3339 other_update=db_nslcmop_update,
3340 )
3341
tierno59d22d22018-09-25 18:10:19 +02003342 if nslcmop_operation_state:
3343 try:
3344 await self.msg.aiowrite("ns", "actioned", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
tierno8a518872018-12-21 13:42:14 +00003345 "operationState": nslcmop_operation_state},
3346 loop=self.loop)
tierno59d22d22018-09-25 18:10:19 +02003347 except Exception as e:
3348 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
3349 self.logger.debug(logging_text + "Exit")
3350 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_action")
tierno067e04a2020-03-31 12:53:13 +00003351 return nslcmop_operation_state, detailed_status
tierno59d22d22018-09-25 18:10:19 +02003352
3353 async def scale(self, nsr_id, nslcmop_id):
kuused124bfe2019-06-18 12:09:24 +02003354
3355 # Try to lock HA task here
3356 task_is_locked_by_me = self.lcm_tasks.lock_HA('ns', 'nslcmops', nslcmop_id)
3357 if not task_is_locked_by_me:
3358 return
3359
tierno59d22d22018-09-25 18:10:19 +02003360 logging_text = "Task ns={} scale={} ".format(nsr_id, nslcmop_id)
3361 self.logger.debug(logging_text + "Enter")
3362 # get all needed from database
3363 db_nsr = None
3364 db_nslcmop = None
3365 db_nslcmop_update = {}
3366 nslcmop_operation_state = None
tiernoe876f672020-02-13 14:34:48 +00003367 db_nsr_update = {}
tierno59d22d22018-09-25 18:10:19 +02003368 exc = None
tierno9ab95942018-10-10 16:44:22 +02003369 # in case of error, indicates what part of scale was failed to put nsr at error status
3370 scale_process = None
tiernod6de1992018-10-11 13:05:52 +02003371 old_operational_status = ""
3372 old_config_status = ""
tiernof578e552018-11-08 19:07:20 +01003373 vnfr_scaled = False
tierno59d22d22018-09-25 18:10:19 +02003374 try:
kuused124bfe2019-06-18 12:09:24 +02003375 # wait for any previous tasks in process
tierno3cf81a32019-11-11 17:07:00 +00003376 step = "Waiting for previous operations to terminate"
kuused124bfe2019-06-18 12:09:24 +02003377 await self.lcm_tasks.waitfor_related_HA('ns', 'nslcmops', nslcmop_id)
tierno47e86b52018-10-10 14:05:55 +02003378
quilesj4cda56b2019-12-05 10:02:20 +00003379 self._write_ns_status(
3380 nsr_id=nsr_id,
3381 ns_state=None,
3382 current_operation="SCALING",
3383 current_operation_id=nslcmop_id
3384 )
3385
ikalyvas02d9e7b2019-05-27 18:16:01 +03003386 step = "Getting nslcmop from database"
ikalyvas02d9e7b2019-05-27 18:16:01 +03003387 self.logger.debug(step + " after having waited for previous tasks to be completed")
3388 db_nslcmop = self.db.get_one("nslcmops", {"_id": nslcmop_id})
3389 step = "Getting nsr from database"
3390 db_nsr = self.db.get_one("nsrs", {"_id": nsr_id})
3391
3392 old_operational_status = db_nsr["operational-status"]
3393 old_config_status = db_nsr["config-status"]
tierno59d22d22018-09-25 18:10:19 +02003394 step = "Parsing scaling parameters"
tierno9babfda2019-06-07 12:36:50 +00003395 # self.logger.debug(step)
tierno59d22d22018-09-25 18:10:19 +02003396 db_nsr_update["operational-status"] = "scaling"
3397 self.update_db_2("nsrs", nsr_id, db_nsr_update)
tiernoe4f7e6c2018-11-27 14:55:30 +00003398 nsr_deployed = db_nsr["_admin"].get("deployed")
calvinosanch9f9c6f22019-11-04 13:37:39 +01003399
3400 #######
3401 nsr_deployed = db_nsr["_admin"].get("deployed")
3402 vnf_index = db_nslcmop["operationParams"].get("member_vnf_index")
tiernoda6fb102019-11-23 00:36:52 +00003403 # vdu_id = db_nslcmop["operationParams"].get("vdu_id")
3404 # vdu_count_index = db_nslcmop["operationParams"].get("vdu_count_index")
3405 # vdu_name = db_nslcmop["operationParams"].get("vdu_name")
calvinosanch9f9c6f22019-11-04 13:37:39 +01003406 #######
3407
tiernoe4f7e6c2018-11-27 14:55:30 +00003408 RO_nsr_id = nsr_deployed["RO"]["nsr_id"]
tierno59d22d22018-09-25 18:10:19 +02003409 vnf_index = db_nslcmop["operationParams"]["scaleVnfData"]["scaleByStepData"]["member-vnf-index"]
3410 scaling_group = db_nslcmop["operationParams"]["scaleVnfData"]["scaleByStepData"]["scaling-group-descriptor"]
3411 scaling_type = db_nslcmop["operationParams"]["scaleVnfData"]["scaleVnfType"]
3412 # scaling_policy = db_nslcmop["operationParams"]["scaleVnfData"]["scaleByStepData"].get("scaling-policy")
3413
tierno82974b22018-11-27 21:55:36 +00003414 # for backward compatibility
3415 if nsr_deployed and isinstance(nsr_deployed.get("VCA"), dict):
3416 nsr_deployed["VCA"] = list(nsr_deployed["VCA"].values())
3417 db_nsr_update["_admin.deployed.VCA"] = nsr_deployed["VCA"]
3418 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3419
tierno59d22d22018-09-25 18:10:19 +02003420 step = "Getting vnfr from database"
3421 db_vnfr = self.db.get_one("vnfrs", {"member-vnf-index-ref": vnf_index, "nsr-id-ref": nsr_id})
3422 step = "Getting vnfd from database"
3423 db_vnfd = self.db.get_one("vnfds", {"_id": db_vnfr["vnfd-id"]})
ikalyvas02d9e7b2019-05-27 18:16:01 +03003424
tierno59d22d22018-09-25 18:10:19 +02003425 step = "Getting scaling-group-descriptor"
3426 for scaling_descriptor in db_vnfd["scaling-group-descriptor"]:
3427 if scaling_descriptor["name"] == scaling_group:
3428 break
3429 else:
3430 raise LcmException("input parameter 'scaleByStepData':'scaling-group-descriptor':'{}' is not present "
3431 "at vnfd:scaling-group-descriptor".format(scaling_group))
ikalyvas02d9e7b2019-05-27 18:16:01 +03003432
tierno59d22d22018-09-25 18:10:19 +02003433 # cooldown_time = 0
3434 # for scaling_policy_descriptor in scaling_descriptor.get("scaling-policy", ()):
3435 # cooldown_time = scaling_policy_descriptor.get("cooldown-time", 0)
3436 # if scaling_policy and scaling_policy == scaling_policy_descriptor.get("name"):
3437 # break
3438
3439 # TODO check if ns is in a proper status
tierno15b1cf12019-08-29 13:21:40 +00003440 step = "Sending scale order to VIM"
tierno59d22d22018-09-25 18:10:19 +02003441 nb_scale_op = 0
3442 if not db_nsr["_admin"].get("scaling-group"):
3443 self.update_db_2("nsrs", nsr_id, {"_admin.scaling-group": [{"name": scaling_group, "nb-scale-op": 0}]})
3444 admin_scale_index = 0
3445 else:
3446 for admin_scale_index, admin_scale_info in enumerate(db_nsr["_admin"]["scaling-group"]):
3447 if admin_scale_info["name"] == scaling_group:
3448 nb_scale_op = admin_scale_info.get("nb-scale-op", 0)
3449 break
tierno9ab95942018-10-10 16:44:22 +02003450 else: # not found, set index one plus last element and add new entry with the name
3451 admin_scale_index += 1
3452 db_nsr_update["_admin.scaling-group.{}.name".format(admin_scale_index)] = scaling_group
tierno59d22d22018-09-25 18:10:19 +02003453 RO_scaling_info = []
3454 vdu_scaling_info = {"scaling_group_name": scaling_group, "vdu": []}
3455 if scaling_type == "SCALE_OUT":
3456 # count if max-instance-count is reached
kuuse818d70c2019-08-07 14:43:44 +02003457 max_instance_count = scaling_descriptor.get("max-instance-count", 10)
3458 # self.logger.debug("MAX_INSTANCE_COUNT is {}".format(max_instance_count))
3459 if nb_scale_op >= max_instance_count:
3460 raise LcmException("reached the limit of {} (max-instance-count) "
3461 "scaling-out operations for the "
3462 "scaling-group-descriptor '{}'".format(nb_scale_op, scaling_group))
kuuse8b998e42019-07-30 15:22:16 +02003463
ikalyvas02d9e7b2019-05-27 18:16:01 +03003464 nb_scale_op += 1
tierno59d22d22018-09-25 18:10:19 +02003465 vdu_scaling_info["scaling_direction"] = "OUT"
3466 vdu_scaling_info["vdu-create"] = {}
3467 for vdu_scale_info in scaling_descriptor["vdu"]:
3468 RO_scaling_info.append({"osm_vdu_id": vdu_scale_info["vdu-id-ref"], "member-vnf-index": vnf_index,
3469 "type": "create", "count": vdu_scale_info.get("count", 1)})
3470 vdu_scaling_info["vdu-create"][vdu_scale_info["vdu-id-ref"]] = vdu_scale_info.get("count", 1)
ikalyvas02d9e7b2019-05-27 18:16:01 +03003471
tierno59d22d22018-09-25 18:10:19 +02003472 elif scaling_type == "SCALE_IN":
3473 # count if min-instance-count is reached
tierno27246d82018-09-27 15:59:09 +02003474 min_instance_count = 0
tierno59d22d22018-09-25 18:10:19 +02003475 if "min-instance-count" in scaling_descriptor and scaling_descriptor["min-instance-count"] is not None:
3476 min_instance_count = int(scaling_descriptor["min-instance-count"])
tierno9babfda2019-06-07 12:36:50 +00003477 if nb_scale_op <= min_instance_count:
3478 raise LcmException("reached the limit of {} (min-instance-count) scaling-in operations for the "
3479 "scaling-group-descriptor '{}'".format(nb_scale_op, scaling_group))
ikalyvas02d9e7b2019-05-27 18:16:01 +03003480 nb_scale_op -= 1
tierno59d22d22018-09-25 18:10:19 +02003481 vdu_scaling_info["scaling_direction"] = "IN"
3482 vdu_scaling_info["vdu-delete"] = {}
3483 for vdu_scale_info in scaling_descriptor["vdu"]:
3484 RO_scaling_info.append({"osm_vdu_id": vdu_scale_info["vdu-id-ref"], "member-vnf-index": vnf_index,
3485 "type": "delete", "count": vdu_scale_info.get("count", 1)})
3486 vdu_scaling_info["vdu-delete"][vdu_scale_info["vdu-id-ref"]] = vdu_scale_info.get("count", 1)
3487
3488 # update VDU_SCALING_INFO with the VDUs to delete ip_addresses
tierno27246d82018-09-27 15:59:09 +02003489 vdu_create = vdu_scaling_info.get("vdu-create")
3490 vdu_delete = copy(vdu_scaling_info.get("vdu-delete"))
tierno59d22d22018-09-25 18:10:19 +02003491 if vdu_scaling_info["scaling_direction"] == "IN":
3492 for vdur in reversed(db_vnfr["vdur"]):
tierno27246d82018-09-27 15:59:09 +02003493 if vdu_delete.get(vdur["vdu-id-ref"]):
3494 vdu_delete[vdur["vdu-id-ref"]] -= 1
tierno59d22d22018-09-25 18:10:19 +02003495 vdu_scaling_info["vdu"].append({
3496 "name": vdur["name"],
3497 "vdu_id": vdur["vdu-id-ref"],
3498 "interface": []
3499 })
3500 for interface in vdur["interfaces"]:
3501 vdu_scaling_info["vdu"][-1]["interface"].append({
3502 "name": interface["name"],
3503 "ip_address": interface["ip-address"],
3504 "mac_address": interface.get("mac-address"),
3505 })
tierno27246d82018-09-27 15:59:09 +02003506 vdu_delete = vdu_scaling_info.pop("vdu-delete")
tierno59d22d22018-09-25 18:10:19 +02003507
kuuseac3a8882019-10-03 10:48:06 +02003508 # PRE-SCALE BEGIN
tierno59d22d22018-09-25 18:10:19 +02003509 step = "Executing pre-scale vnf-config-primitive"
3510 if scaling_descriptor.get("scaling-config-action"):
3511 for scaling_config_action in scaling_descriptor["scaling-config-action"]:
kuuseac3a8882019-10-03 10:48:06 +02003512 if (scaling_config_action.get("trigger") == "pre-scale-in" and scaling_type == "SCALE_IN") \
3513 or (scaling_config_action.get("trigger") == "pre-scale-out" and scaling_type == "SCALE_OUT"):
tierno59d22d22018-09-25 18:10:19 +02003514 vnf_config_primitive = scaling_config_action["vnf-config-primitive-name-ref"]
3515 step = db_nslcmop_update["detailed-status"] = \
3516 "executing pre-scale scaling-config-action '{}'".format(vnf_config_primitive)
tiernoda964822019-01-14 15:53:47 +00003517
tierno59d22d22018-09-25 18:10:19 +02003518 # look for primitive
tierno59d22d22018-09-25 18:10:19 +02003519 for config_primitive in db_vnfd.get("vnf-configuration", {}).get("config-primitive", ()):
3520 if config_primitive["name"] == vnf_config_primitive:
tierno59d22d22018-09-25 18:10:19 +02003521 break
3522 else:
3523 raise LcmException(
3524 "Invalid vnfd descriptor at scaling-group-descriptor[name='{}']:scaling-config-action"
tiernoda964822019-01-14 15:53:47 +00003525 "[vnf-config-primitive-name-ref='{}'] does not match any vnf-configuration:config-"
tierno59d22d22018-09-25 18:10:19 +02003526 "primitive".format(scaling_group, config_primitive))
tiernoda964822019-01-14 15:53:47 +00003527
tierno16fedf52019-05-24 08:38:26 +00003528 vnfr_params = {"VDU_SCALE_INFO": vdu_scaling_info}
tiernoda964822019-01-14 15:53:47 +00003529 if db_vnfr.get("additionalParamsForVnf"):
3530 vnfr_params.update(db_vnfr["additionalParamsForVnf"])
quilesj7e13aeb2019-10-08 13:34:55 +02003531
tierno9ab95942018-10-10 16:44:22 +02003532 scale_process = "VCA"
tiernod6de1992018-10-11 13:05:52 +02003533 db_nsr_update["config-status"] = "configuring pre-scaling"
kuuseac3a8882019-10-03 10:48:06 +02003534 primitive_params = self._map_primitive_params(config_primitive, {}, vnfr_params)
3535
3536 # Pre-scale reintent check: Check if this sub-operation has been executed before
3537 op_index = self._check_or_add_scale_suboperation(
3538 db_nslcmop, nslcmop_id, vnf_index, vnf_config_primitive, primitive_params, 'PRE-SCALE')
3539 if (op_index == self.SUBOPERATION_STATUS_SKIP):
3540 # Skip sub-operation
3541 result = 'COMPLETED'
3542 result_detail = 'Done'
3543 self.logger.debug(logging_text +
3544 "vnf_config_primitive={} Skipped sub-operation, result {} {}".format(
3545 vnf_config_primitive, result, result_detail))
3546 else:
3547 if (op_index == self.SUBOPERATION_STATUS_NEW):
3548 # New sub-operation: Get index of this sub-operation
3549 op_index = len(db_nslcmop.get('_admin', {}).get('operations')) - 1
3550 self.logger.debug(logging_text + "vnf_config_primitive={} New sub-operation".
3551 format(vnf_config_primitive))
3552 else:
3553 # Reintent: Get registered params for this existing sub-operation
3554 op = db_nslcmop.get('_admin', {}).get('operations', [])[op_index]
3555 vnf_index = op.get('member_vnf_index')
3556 vnf_config_primitive = op.get('primitive')
3557 primitive_params = op.get('primitive_params')
3558 self.logger.debug(logging_text + "vnf_config_primitive={} Sub-operation reintent".
3559 format(vnf_config_primitive))
3560 # Execute the primitive, either with new (first-time) or registered (reintent) args
3561 result, result_detail = await self._ns_execute_primitive(
tiernoe876f672020-02-13 14:34:48 +00003562 self._look_for_deployed_vca(nsr_deployed["VCA"],
3563 member_vnf_index=vnf_index,
3564 vdu_id=None,
tiernoe876f672020-02-13 14:34:48 +00003565 vdu_count_index=None),
3566 vnf_config_primitive, primitive_params)
kuuseac3a8882019-10-03 10:48:06 +02003567 self.logger.debug(logging_text + "vnf_config_primitive={} Done with result {} {}".format(
3568 vnf_config_primitive, result, result_detail))
3569 # Update operationState = COMPLETED | FAILED
3570 self._update_suboperation_status(
3571 db_nslcmop, op_index, result, result_detail)
3572
tierno59d22d22018-09-25 18:10:19 +02003573 if result == "FAILED":
3574 raise LcmException(result_detail)
tiernod6de1992018-10-11 13:05:52 +02003575 db_nsr_update["config-status"] = old_config_status
3576 scale_process = None
kuuseac3a8882019-10-03 10:48:06 +02003577 # PRE-SCALE END
tierno59d22d22018-09-25 18:10:19 +02003578
kuuseac3a8882019-10-03 10:48:06 +02003579 # SCALE RO - BEGIN
3580 # Should this block be skipped if 'RO_nsr_id' == None ?
3581 # if (RO_nsr_id and RO_scaling_info):
tierno59d22d22018-09-25 18:10:19 +02003582 if RO_scaling_info:
tierno9ab95942018-10-10 16:44:22 +02003583 scale_process = "RO"
kuuseac3a8882019-10-03 10:48:06 +02003584 # Scale RO reintent check: Check if this sub-operation has been executed before
3585 op_index = self._check_or_add_scale_suboperation(
3586 db_nslcmop, vnf_index, None, None, 'SCALE-RO', RO_nsr_id, RO_scaling_info)
3587 if (op_index == self.SUBOPERATION_STATUS_SKIP):
3588 # Skip sub-operation
3589 result = 'COMPLETED'
3590 result_detail = 'Done'
3591 self.logger.debug(logging_text + "Skipped sub-operation RO, result {} {}".format(
3592 result, result_detail))
3593 else:
3594 if (op_index == self.SUBOPERATION_STATUS_NEW):
3595 # New sub-operation: Get index of this sub-operation
3596 op_index = len(db_nslcmop.get('_admin', {}).get('operations')) - 1
3597 self.logger.debug(logging_text + "New sub-operation RO")
tierno59d22d22018-09-25 18:10:19 +02003598 else:
kuuseac3a8882019-10-03 10:48:06 +02003599 # Reintent: Get registered params for this existing sub-operation
3600 op = db_nslcmop.get('_admin', {}).get('operations', [])[op_index]
3601 RO_nsr_id = op.get('RO_nsr_id')
3602 RO_scaling_info = op.get('RO_scaling_info')
3603 self.logger.debug(logging_text + "Sub-operation RO reintent".format(
3604 vnf_config_primitive))
3605
3606 RO_desc = await self.RO.create_action("ns", RO_nsr_id, {"vdu-scaling": RO_scaling_info})
3607 db_nsr_update["_admin.scaling-group.{}.nb-scale-op".format(admin_scale_index)] = nb_scale_op
3608 db_nsr_update["_admin.scaling-group.{}.time".format(admin_scale_index)] = time()
3609 # wait until ready
3610 RO_nslcmop_id = RO_desc["instance_action_id"]
3611 db_nslcmop_update["_admin.deploy.RO"] = RO_nslcmop_id
3612
3613 RO_task_done = False
3614 step = detailed_status = "Waiting RO_task_id={} to complete the scale action.".format(RO_nslcmop_id)
3615 detailed_status_old = None
3616 self.logger.debug(logging_text + step)
3617
3618 deployment_timeout = 1 * 3600 # One hour
3619 while deployment_timeout > 0:
3620 if not RO_task_done:
3621 desc = await self.RO.show("ns", item_id_name=RO_nsr_id, extra_item="action",
3622 extra_item_id=RO_nslcmop_id)
quilesj3655ae02019-12-12 16:08:35 +00003623
3624 # deploymentStatus
3625 self._on_update_ro_db(nsrs_id=nsr_id, ro_descriptor=desc)
3626
kuuseac3a8882019-10-03 10:48:06 +02003627 ns_status, ns_status_info = self.RO.check_action_status(desc)
3628 if ns_status == "ERROR":
3629 raise ROclient.ROClientException(ns_status_info)
3630 elif ns_status == "BUILD":
3631 detailed_status = step + "; {}".format(ns_status_info)
3632 elif ns_status == "ACTIVE":
3633 RO_task_done = True
3634 step = detailed_status = "Waiting ns ready at RO. RO_id={}".format(RO_nsr_id)
3635 self.logger.debug(logging_text + step)
3636 else:
3637 assert False, "ROclient.check_action_status returns unknown {}".format(ns_status)
tierno59d22d22018-09-25 18:10:19 +02003638 else:
quilesj7e13aeb2019-10-08 13:34:55 +02003639
kuuseac3a8882019-10-03 10:48:06 +02003640 if ns_status == "ERROR":
3641 raise ROclient.ROClientException(ns_status_info)
3642 elif ns_status == "BUILD":
3643 detailed_status = step + "; {}".format(ns_status_info)
3644 elif ns_status == "ACTIVE":
3645 step = detailed_status = \
3646 "Waiting for management IP address reported by the VIM. Updating VNFRs"
3647 if not vnfr_scaled:
3648 self.scale_vnfr(db_vnfr, vdu_create=vdu_create, vdu_delete=vdu_delete)
3649 vnfr_scaled = True
3650 try:
3651 desc = await self.RO.show("ns", RO_nsr_id)
quilesj3655ae02019-12-12 16:08:35 +00003652
3653 # deploymentStatus
3654 self._on_update_ro_db(nsrs_id=nsr_id, ro_descriptor=desc)
3655
kuuseac3a8882019-10-03 10:48:06 +02003656 # nsr_deployed["nsr_ip"] = RO.get_ns_vnf_info(desc)
3657 self.ns_update_vnfr({db_vnfr["member-vnf-index-ref"]: db_vnfr}, desc)
3658 break
3659 except LcmExceptionNoMgmtIP:
3660 pass
3661 else:
3662 assert False, "ROclient.check_ns_status returns unknown {}".format(ns_status)
3663 if detailed_status != detailed_status_old:
3664 self._update_suboperation_status(
3665 db_nslcmop, op_index, 'COMPLETED', detailed_status)
3666 detailed_status_old = db_nslcmop_update["detailed-status"] = detailed_status
3667 self.update_db_2("nslcmops", nslcmop_id, db_nslcmop_update)
tierno59d22d22018-09-25 18:10:19 +02003668
kuuseac3a8882019-10-03 10:48:06 +02003669 await asyncio.sleep(5, loop=self.loop)
3670 deployment_timeout -= 5
3671 if deployment_timeout <= 0:
3672 self._update_suboperation_status(
3673 db_nslcmop, nslcmop_id, op_index, 'FAILED', "Timeout when waiting for ns to get ready")
3674 raise ROclient.ROClientException("Timeout waiting ns to be ready")
tierno59d22d22018-09-25 18:10:19 +02003675
kuuseac3a8882019-10-03 10:48:06 +02003676 # update VDU_SCALING_INFO with the obtained ip_addresses
3677 if vdu_scaling_info["scaling_direction"] == "OUT":
3678 for vdur in reversed(db_vnfr["vdur"]):
3679 if vdu_scaling_info["vdu-create"].get(vdur["vdu-id-ref"]):
3680 vdu_scaling_info["vdu-create"][vdur["vdu-id-ref"]] -= 1
3681 vdu_scaling_info["vdu"].append({
3682 "name": vdur["name"],
3683 "vdu_id": vdur["vdu-id-ref"],
3684 "interface": []
tierno59d22d22018-09-25 18:10:19 +02003685 })
kuuseac3a8882019-10-03 10:48:06 +02003686 for interface in vdur["interfaces"]:
3687 vdu_scaling_info["vdu"][-1]["interface"].append({
3688 "name": interface["name"],
3689 "ip_address": interface["ip-address"],
3690 "mac_address": interface.get("mac-address"),
3691 })
3692 del vdu_scaling_info["vdu-create"]
3693
3694 self._update_suboperation_status(db_nslcmop, op_index, 'COMPLETED', 'Done')
3695 # SCALE RO - END
tierno59d22d22018-09-25 18:10:19 +02003696
tierno9ab95942018-10-10 16:44:22 +02003697 scale_process = None
tierno59d22d22018-09-25 18:10:19 +02003698 if db_nsr_update:
3699 self.update_db_2("nsrs", nsr_id, db_nsr_update)
3700
kuuseac3a8882019-10-03 10:48:06 +02003701 # POST-SCALE BEGIN
tierno59d22d22018-09-25 18:10:19 +02003702 # execute primitive service POST-SCALING
3703 step = "Executing post-scale vnf-config-primitive"
3704 if scaling_descriptor.get("scaling-config-action"):
3705 for scaling_config_action in scaling_descriptor["scaling-config-action"]:
kuuseac3a8882019-10-03 10:48:06 +02003706 if (scaling_config_action.get("trigger") == "post-scale-in" and scaling_type == "SCALE_IN") \
3707 or (scaling_config_action.get("trigger") == "post-scale-out" and scaling_type == "SCALE_OUT"):
tierno59d22d22018-09-25 18:10:19 +02003708 vnf_config_primitive = scaling_config_action["vnf-config-primitive-name-ref"]
3709 step = db_nslcmop_update["detailed-status"] = \
3710 "executing post-scale scaling-config-action '{}'".format(vnf_config_primitive)
tiernoda964822019-01-14 15:53:47 +00003711
tierno589befb2019-05-29 07:06:23 +00003712 vnfr_params = {"VDU_SCALE_INFO": vdu_scaling_info}
tiernoda964822019-01-14 15:53:47 +00003713 if db_vnfr.get("additionalParamsForVnf"):
3714 vnfr_params.update(db_vnfr["additionalParamsForVnf"])
3715
tierno59d22d22018-09-25 18:10:19 +02003716 # look for primitive
tierno59d22d22018-09-25 18:10:19 +02003717 for config_primitive in db_vnfd.get("vnf-configuration", {}).get("config-primitive", ()):
3718 if config_primitive["name"] == vnf_config_primitive:
tierno59d22d22018-09-25 18:10:19 +02003719 break
3720 else:
3721 raise LcmException("Invalid vnfd descriptor at scaling-group-descriptor[name='{}']:"
3722 "scaling-config-action[vnf-config-primitive-name-ref='{}'] does not "
tierno47e86b52018-10-10 14:05:55 +02003723 "match any vnf-configuration:config-primitive".format(scaling_group,
3724 config_primitive))
tierno9ab95942018-10-10 16:44:22 +02003725 scale_process = "VCA"
tiernod6de1992018-10-11 13:05:52 +02003726 db_nsr_update["config-status"] = "configuring post-scaling"
kuuseac3a8882019-10-03 10:48:06 +02003727 primitive_params = self._map_primitive_params(config_primitive, {}, vnfr_params)
tiernod6de1992018-10-11 13:05:52 +02003728
kuuseac3a8882019-10-03 10:48:06 +02003729 # Post-scale reintent check: Check if this sub-operation has been executed before
3730 op_index = self._check_or_add_scale_suboperation(
3731 db_nslcmop, nslcmop_id, vnf_index, vnf_config_primitive, primitive_params, 'POST-SCALE')
quilesj4cda56b2019-12-05 10:02:20 +00003732 if op_index == self.SUBOPERATION_STATUS_SKIP:
kuuseac3a8882019-10-03 10:48:06 +02003733 # Skip sub-operation
3734 result = 'COMPLETED'
3735 result_detail = 'Done'
3736 self.logger.debug(logging_text +
3737 "vnf_config_primitive={} Skipped sub-operation, result {} {}".
3738 format(vnf_config_primitive, result, result_detail))
3739 else:
quilesj4cda56b2019-12-05 10:02:20 +00003740 if op_index == self.SUBOPERATION_STATUS_NEW:
kuuseac3a8882019-10-03 10:48:06 +02003741 # New sub-operation: Get index of this sub-operation
3742 op_index = len(db_nslcmop.get('_admin', {}).get('operations')) - 1
3743 self.logger.debug(logging_text + "vnf_config_primitive={} New sub-operation".
3744 format(vnf_config_primitive))
3745 else:
3746 # Reintent: Get registered params for this existing sub-operation
3747 op = db_nslcmop.get('_admin', {}).get('operations', [])[op_index]
3748 vnf_index = op.get('member_vnf_index')
3749 vnf_config_primitive = op.get('primitive')
3750 primitive_params = op.get('primitive_params')
3751 self.logger.debug(logging_text + "vnf_config_primitive={} Sub-operation reintent".
3752 format(vnf_config_primitive))
3753 # Execute the primitive, either with new (first-time) or registered (reintent) args
3754 result, result_detail = await self._ns_execute_primitive(
tiernoe876f672020-02-13 14:34:48 +00003755 self._look_for_deployed_vca(nsr_deployed["VCA"],
3756 member_vnf_index=vnf_index,
3757 vdu_id=None,
tiernoe876f672020-02-13 14:34:48 +00003758 vdu_count_index=None),
3759 vnf_config_primitive, primitive_params)
kuuseac3a8882019-10-03 10:48:06 +02003760 self.logger.debug(logging_text + "vnf_config_primitive={} Done with result {} {}".format(
3761 vnf_config_primitive, result, result_detail))
3762 # Update operationState = COMPLETED | FAILED
3763 self._update_suboperation_status(
3764 db_nslcmop, op_index, result, result_detail)
3765
tierno59d22d22018-09-25 18:10:19 +02003766 if result == "FAILED":
3767 raise LcmException(result_detail)
tiernod6de1992018-10-11 13:05:52 +02003768 db_nsr_update["config-status"] = old_config_status
3769 scale_process = None
kuuseac3a8882019-10-03 10:48:06 +02003770 # POST-SCALE END
tierno59d22d22018-09-25 18:10:19 +02003771
3772 db_nslcmop_update["operationState"] = nslcmop_operation_state = "COMPLETED"
3773 db_nslcmop_update["statusEnteredTime"] = time()
3774 db_nslcmop_update["detailed-status"] = "done"
tiernod6de1992018-10-11 13:05:52 +02003775 db_nsr_update["detailed-status"] = "" # "scaled {} {}".format(scaling_group, scaling_type)
ikalyvas02d9e7b2019-05-27 18:16:01 +03003776 db_nsr_update["operational-status"] = "running" if old_operational_status == "failed" \
3777 else old_operational_status
tiernod6de1992018-10-11 13:05:52 +02003778 db_nsr_update["config-status"] = old_config_status
tierno59d22d22018-09-25 18:10:19 +02003779 return
3780 except (ROclient.ROClientException, DbException, LcmException) as e:
3781 self.logger.error(logging_text + "Exit Exception {}".format(e))
3782 exc = e
3783 except asyncio.CancelledError:
3784 self.logger.error(logging_text + "Cancelled Exception while '{}'".format(step))
3785 exc = "Operation was cancelled"
3786 except Exception as e:
3787 exc = traceback.format_exc()
3788 self.logger.critical(logging_text + "Exit Exception {} {}".format(type(e).__name__, e), exc_info=True)
3789 finally:
quilesj3655ae02019-12-12 16:08:35 +00003790 self._write_ns_status(
3791 nsr_id=nsr_id,
3792 ns_state=None,
3793 current_operation="IDLE",
3794 current_operation_id=None
3795 )
tierno59d22d22018-09-25 18:10:19 +02003796 if exc:
3797 if db_nslcmop:
3798 db_nslcmop_update["detailed-status"] = "FAILED {}: {}".format(step, exc)
3799 db_nslcmop_update["operationState"] = nslcmop_operation_state = "FAILED"
3800 db_nslcmop_update["statusEnteredTime"] = time()
3801 if db_nsr:
tiernod6de1992018-10-11 13:05:52 +02003802 db_nsr_update["operational-status"] = old_operational_status
3803 db_nsr_update["config-status"] = old_config_status
3804 db_nsr_update["detailed-status"] = ""
3805 if scale_process:
3806 if "VCA" in scale_process:
3807 db_nsr_update["config-status"] = "failed"
3808 if "RO" in scale_process:
3809 db_nsr_update["operational-status"] = "failed"
3810 db_nsr_update["detailed-status"] = "FAILED scaling nslcmop={} {}: {}".format(nslcmop_id, step,
3811 exc)
tiernobaa51102018-12-14 13:16:18 +00003812 try:
3813 if db_nslcmop and db_nslcmop_update:
3814 self.update_db_2("nslcmops", nslcmop_id, db_nslcmop_update)
3815 if db_nsr:
quilesj4cda56b2019-12-05 10:02:20 +00003816 self._write_ns_status(
3817 nsr_id=nsr_id,
3818 ns_state=None,
3819 current_operation="IDLE",
tiernoe876f672020-02-13 14:34:48 +00003820 current_operation_id=None,
3821 other_update=db_nsr_update
quilesj4cda56b2019-12-05 10:02:20 +00003822 )
3823
tiernobaa51102018-12-14 13:16:18 +00003824 except DbException as e:
3825 self.logger.error(logging_text + "Cannot update database: {}".format(e))
tierno59d22d22018-09-25 18:10:19 +02003826 if nslcmop_operation_state:
3827 try:
3828 await self.msg.aiowrite("ns", "scaled", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
tierno8a518872018-12-21 13:42:14 +00003829 "operationState": nslcmop_operation_state},
3830 loop=self.loop)
tierno59d22d22018-09-25 18:10:19 +02003831 # if cooldown_time:
tiernod8323042019-08-09 11:32:23 +00003832 # await asyncio.sleep(cooldown_time, loop=self.loop)
tierno59d22d22018-09-25 18:10:19 +02003833 # await self.msg.aiowrite("ns","scaled-cooldown-time", {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id})
3834 except Exception as e:
3835 self.logger.error(logging_text + "kafka_write notification Exception {}".format(e))
3836 self.logger.debug(logging_text + "Exit")
3837 self.lcm_tasks.remove("ns", nsr_id, nslcmop_id, "ns_scale")