Standardize logging
[osm/N2VC.git] / n2vc / k8s_conn.py
1 ##
2 # Copyright 2019 Telefonica Investigacion y Desarrollo, S.A.U.
3 # This file is part of OSM
4 # All Rights Reserved.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain 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,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15 # implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19 # For those usages not covered by the Apache License, Version 2.0 please
20 # contact with: nfvlabs@tid.es
21 ##
22
23 import asyncio
24 from n2vc.loggable import Loggable
25 import abc
26 import time
27
28
29 class K8sConnector(abc.ABC, Loggable):
30
31 """
32 ##################################################################################################
33 ########################################## P U B L I C ###########################################
34 ##################################################################################################
35 """
36
37 def __init__(
38 self,
39 db: object,
40 log: object = None,
41 on_update_db=None
42 ):
43 """
44
45 :param db: database object to write current operation status
46 :param log: logger for tracing
47 :param on_update_db: callback called when k8s connector updates database
48 """
49
50 # parent class
51 Loggable.__init__(self, log=log, log_to_console=True, prefix='\nK8S')
52
53 self.log.info('Initializing generic K8S connector')
54
55 # the database and update callback
56 self.db = db
57 self.on_update_db = on_update_db
58
59 self.log.info('K8S generic connector initialized')
60
61 @abc.abstractmethod
62 async def init_env(
63 self,
64 k8s_creds: str,
65 namespace: str = 'kube-system',
66 reuse_cluster_uuid=None
67 ) -> (str, bool):
68 """
69 It prepares a given K8s cluster environment to run Charts or juju Bundles on both sides:
70 client (OSM)
71 server (Tiller/Charm)
72
73 :param k8s_creds: credentials to access a given K8s cluster, i.e. a valid '.kube/config'
74 :param namespace: optional namespace to be used for the K8s engine (helm tiller, juju).
75 By default, 'kube-system' will be used
76 :param reuse_cluster_uuid: existing cluster uuid for reuse
77 :return: uuid of the K8s cluster and True if connector has installed some software in the cluster
78 (on error, an exception will be raised)
79 """
80
81 @abc.abstractmethod
82 async def repo_add(
83 self,
84 cluster_uuid: str,
85 name: str,
86 url: str,
87 repo_type: str = 'chart'
88 ):
89 """
90 Add a new repository to OSM database
91
92 :param cluster_uuid: the cluster
93 :param name: name for the repo in OSM
94 :param url: URL of the repo
95 :param repo_type: either "chart" or "bundle"
96 :return: True if successful
97 """
98
99 @abc.abstractmethod
100 async def repo_list(
101 self,
102 cluster_uuid: str
103 ):
104 """
105 Get the list of registered repositories
106
107 :param cluster_uuid: the cluster
108 :return: list of registered repositories: [ (name, url) .... ]
109 """
110
111 @abc.abstractmethod
112 async def repo_remove(
113 self,
114 cluster_uuid: str,
115 name: str
116 ):
117 """
118 Remove a repository from OSM
119
120 :param name: repo name in OSM
121 :param cluster_uuid: the cluster
122 :return: True if successful
123 """
124
125 @abc.abstractmethod
126 async def synchronize_repos(
127 self,
128 cluster_uuid: str,
129 name: str
130 ):
131 """
132 Synchronizes the list of repositories created in the cluster with
133 the repositories added by the NBI
134
135 :param cluster_uuid: the cluster
136 :return: List of repositories deleted from the cluster and dictionary with repos added
137 """
138
139 @abc.abstractmethod
140 async def reset(
141 self,
142 cluster_uuid: str,
143 force: bool = False,
144 uninstall_sw: bool = False
145 ) -> bool:
146 """
147 Uninstalls Tiller/Charm from a known K8s cluster and removes it from the list of known K8s clusters.
148 Intended to be used e.g. when the NS instance is deleted.
149
150 :param cluster_uuid: UUID of a K8s cluster known by OSM.
151 :param force: force deletion, even in case there are deployed releases
152 :param uninstall_sw: flag to indicate that sw uninstallation from software is needed
153 :return: str: kdu_instance generated by helm
154 """
155
156 @abc.abstractmethod
157 async def install(
158 self,
159 cluster_uuid: str,
160 kdu_model: str,
161 atomic: bool = True,
162 timeout: float = 300,
163 params: dict = None,
164 db_dict: dict = None,
165 kdu_name: str = None
166 ):
167 """
168 Deploys of a new KDU instance. It would implicitly rely on the `install` call to deploy the Chart/Bundle
169 properly parametrized (in practice, this call would happen before any _initial-config-primitive_
170 of the VNF is called).
171
172 :param cluster_uuid: UUID of a K8s cluster known by OSM
173 :param kdu_model: chart/bundle:version reference (string), which can be either of these options:
174 - a name of chart/bundle available via the repos known by OSM
175 - a path to a packaged chart/bundle
176 - a path to an unpacked chart/bundle directory or a URL
177 :param atomic: If set, installation process purges chart/bundle on fail, also will wait until
178 all the K8s objects are active
179 :param timeout: Time in seconds to wait for the install of the chart/bundle (defaults to
180 Helm default timeout: 300s)
181 :param params: dictionary of key-value pairs for instantiation parameters (overriding default values)
182 :param dict db_dict: where to write into database when the status changes.
183 It contains a dict with {collection: <str>, filter: {}, path: <str>},
184 e.g. {collection: "nsrs", filter: {_id: <nsd-id>, path: "_admin.deployed.K8S.3"}
185 :param kdu_name: Name of the KDU instance to be installed
186 :return: True if successful
187 """
188
189 @abc.abstractmethod
190 async def upgrade(
191 self,
192 cluster_uuid: str,
193 kdu_instance: str,
194 kdu_model: str = None,
195 atomic: bool = True,
196 timeout: float = 300,
197 params: dict = None,
198 db_dict: dict = None
199 ):
200 """
201 Upgrades an existing KDU instance. It would implicitly use the `upgrade` call over an existing Chart/Bundle.
202 It can be used both to upgrade the chart or to reconfigure it. This would be exposed as Day-2 primitive.
203
204 :param cluster_uuid: UUID of a K8s cluster known by OSM
205 :param kdu_instance: unique name for the KDU instance to be updated
206 :param kdu_model: new chart/bundle:version reference
207 :param atomic: rollback in case of fail and wait for pods and services are available
208 :param timeout: Time in seconds to wait for the install of the chart/bundle (defaults to
209 Helm default timeout: 300s)
210 :param params: new dictionary of key-value pairs for instantiation parameters
211 :param dict db_dict: where to write into database when the status changes.
212 It contains a dict with {collection: <str>, filter: {}, path: <str>},
213 e.g. {collection: "nsrs", filter: {_id: <nsd-id>, path: "_admin.deployed.K8S.3"}
214 :return: reference to the new revision number of the KDU instance
215 """
216
217 @abc.abstractmethod
218 async def rollback(
219 self,
220 cluster_uuid: str,
221 kdu_instance: str,
222 revision=0,
223 db_dict: dict = None
224 ):
225 """
226 Rolls back a previous update of a KDU instance. It would implicitly use the `rollback` call.
227 It can be used both to rollback from a Chart/Bundle version update or from a reconfiguration.
228 This would be exposed as Day-2 primitive.
229
230 :param cluster_uuid: UUID of a K8s cluster known by OSM
231 :param kdu_instance: unique name for the KDU instance
232 :param revision: revision to which revert changes. If omitted, it will revert the last update only
233 :param dict db_dict: where to write into database when the status changes.
234 It contains a dict with {collection: <str>, filter: {}, path: <str>},
235 e.g. {collection: "nsrs", filter: {_id: <nsd-id>, path: "_admin.deployed.K8S.3"}
236 :return:If successful, reference to the current active revision of the KDU instance after the rollback
237 """
238
239 @abc.abstractmethod
240 async def uninstall(
241 self,
242 cluster_uuid: str,
243 kdu_instance: str
244 ):
245 """
246 Removes an existing KDU instance. It would implicitly use the `delete` call (this call would happen
247 after all _terminate-config-primitive_ of the VNF are invoked).
248
249 :param cluster_uuid: UUID of a K8s cluster known by OSM
250 :param kdu_instance: unique name for the KDU instance to be deleted
251 :return: True if successful
252 """
253
254 @abc.abstractmethod
255 async def inspect_kdu(
256 self,
257 kdu_model: str,
258 repo_url: str = None
259 ) -> str:
260 """
261 These calls will retrieve from the Chart/Bundle:
262
263 - The list of configurable values and their defaults (e.g. in Charts, it would retrieve
264 the contents of `values.yaml`).
265 - If available, any embedded help file (e.g. `readme.md`) embedded in the Chart/Bundle.
266
267 :param kdu_model: chart/bundle reference
268 :param repo_url: optional, reposotory URL (None if tar.gz, URl in other cases, even stable URL)
269 :return:
270
271 If successful, it will return the available parameters and their default values as provided by the backend.
272 """
273
274 @abc.abstractmethod
275 async def help_kdu(
276 self,
277 kdu_model: str,
278 repo_url: str = None
279 ) -> str:
280 """
281
282 :param kdu_model: chart/bundle reference
283 :param repo_url: optional, reposotory URL (None if tar.gz, URl in other cases, even stable URL)
284 :return: If successful, it will return the contents of the 'readme.md'
285 """
286
287 @abc.abstractmethod
288 async def status_kdu(
289 self,
290 cluster_uuid: str,
291 kdu_instance: str
292 ) -> str:
293 """
294 This call would retrieve tha current state of a given KDU instance. It would be would allow to retrieve
295 the _composition_ (i.e. K8s objects) and _specific values_ of the configuration parameters applied
296 to a given instance. This call would be based on the `status` call.
297
298 :param cluster_uuid: UUID of a K8s cluster known by OSM
299 :param kdu_instance: unique name for the KDU instance
300 :return: If successful, it will return the following vector of arguments:
301 - K8s `namespace` in the cluster where the KDU lives
302 - `state` of the KDU instance. It can be:
303 - UNKNOWN
304 - DEPLOYED
305 - DELETED
306 - SUPERSEDED
307 - FAILED or
308 - DELETING
309 - List of `resources` (objects) that this release consists of, sorted by kind, and the status of those resources
310 - Last `deployment_time`.
311
312 """
313
314 """
315 ##################################################################################################
316 ########################################## P R I V A T E #########################################
317 ##################################################################################################
318 """
319
320 async def write_app_status_to_db(
321 self,
322 db_dict: dict,
323 status: str,
324 detailed_status: str,
325 operation: str
326 ) -> bool:
327
328 if not self.db:
329 self.warning('No db => No database write')
330 return False
331
332 if not db_dict:
333 self.warning('No db_dict => No database write')
334 return False
335
336 self.log.debug('status={}'.format(status))
337
338 try:
339
340 the_table = db_dict['collection']
341 the_filter = db_dict['filter']
342 the_path = db_dict['path']
343 if not the_path[-1] == '.':
344 the_path = the_path + '.'
345 update_dict = {
346 the_path + 'operation': operation,
347 the_path + 'status': status,
348 the_path + 'detailed-status': detailed_status,
349 the_path + 'status-time': str(time.time()),
350 }
351
352 self.db.set_one(
353 table=the_table,
354 q_filter=the_filter,
355 update_dict=update_dict,
356 fail_on_empty=True
357 )
358
359 # database callback
360 if self.on_update_db:
361 if asyncio.iscoroutinefunction(self.on_update_db):
362 await self.on_update_db(the_table, the_filter, the_path, update_dict)
363 else:
364 self.on_update_db(the_table, the_filter, the_path, update_dict)
365
366 return True
367
368 except Exception as e:
369 self.log.info('Exception writing status to database: {}'.format(e))
370 return False