| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 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 | ## |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 22 | import asyncio |
| Pedro Escaleira | d901a80 | 2022-04-05 17:32:13 +0100 | [diff] [blame] | 23 | from typing import Union |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 24 | import os |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 25 | import yaml |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 26 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 27 | from n2vc.k8s_helm_base_conn import K8sHelmBaseConnector |
| 28 | from n2vc.exceptions import K8sException |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 29 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 30 | |
| 31 | class K8sHelmConnector(K8sHelmBaseConnector): |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 32 | |
| 33 | """ |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 34 | #################################################################################### |
| 35 | ################################### P U B L I C #################################### |
| 36 | #################################################################################### |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 37 | """ |
| 38 | |
| 39 | def __init__( |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 40 | self, |
| 41 | fs: object, |
| 42 | db: object, |
| 43 | kubectl_command: str = "/usr/bin/kubectl", |
| 44 | helm_command: str = "/usr/bin/helm", |
| 45 | log: object = None, |
| 46 | on_update_db=None, |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 47 | ): |
| 48 | """ |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 49 | Initializes helm connector for helm v2 |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 50 | |
| 51 | :param fs: file system for kubernetes and helm configuration |
| 52 | :param db: database object to write current operation status |
| 53 | :param kubectl_command: path to kubectl executable |
| 54 | :param helm_command: path to helm executable |
| 55 | :param log: logger |
| 56 | :param on_update_db: callback called when k8s connector updates database |
| 57 | """ |
| 58 | |
| 59 | # parent class |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 60 | K8sHelmBaseConnector.__init__( |
| 61 | self, |
| 62 | db=db, |
| 63 | log=log, |
| 64 | fs=fs, |
| 65 | kubectl_command=kubectl_command, |
| 66 | helm_command=helm_command, |
| 67 | on_update_db=on_update_db, |
| 68 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 69 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 70 | self.log.info("Initializing K8S Helm2 connector") |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 71 | |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 72 | # initialize helm client-only |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 73 | self.log.debug("Initializing helm client-only...") |
| David Garcia | dd32206 | 2021-05-28 16:21:51 +0200 | [diff] [blame] | 74 | command = "{} init --client-only {} ".format( |
| 75 | self._helm_command, |
| 76 | "--stable-repo-url {}".format(self._stable_repo_url) |
| 77 | if self._stable_repo_url |
| 78 | else "--skip-repos", |
| garciadeblas | 82b591c | 2021-03-24 09:22:13 +0100 | [diff] [blame] | 79 | ) |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 80 | try: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 81 | asyncio.ensure_future( |
| 82 | self._local_async_exec(command=command, raise_exception_on_error=False) |
| 83 | ) |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 84 | # loop = asyncio.get_event_loop() |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 85 | # loop.run_until_complete(self._local_async_exec(command=command, |
| 86 | # raise_exception_on_error=False)) |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 87 | except Exception as e: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 88 | self.warning( |
| 89 | msg="helm init failed (it was already initialized): {}".format(e) |
| 90 | ) |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 91 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 92 | self.log.info("K8S Helm2 connector initialized") |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 93 | |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 94 | async def install( |
| garciadeblas | 82b591c | 2021-03-24 09:22:13 +0100 | [diff] [blame] | 95 | self, |
| 96 | cluster_uuid: str, |
| 97 | kdu_model: str, |
| 98 | kdu_instance: str, |
| 99 | atomic: bool = True, |
| 100 | timeout: float = 300, |
| 101 | params: dict = None, |
| 102 | db_dict: dict = None, |
| 103 | kdu_name: str = None, |
| 104 | namespace: str = None, |
| 105 | **kwargs, |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 106 | ): |
| David Garcia | eb8943a | 2021-04-12 12:07:37 +0200 | [diff] [blame] | 107 | """ |
| 108 | Deploys of a new KDU instance. It would implicitly rely on the `install` call |
| 109 | to deploy the Chart/Bundle properly parametrized (in practice, this call would |
| 110 | happen before any _initial-config-primitive_of the VNF is called). |
| 111 | |
| 112 | :param cluster_uuid: UUID of a K8s cluster known by OSM |
| 113 | :param kdu_model: chart/ reference (string), which can be either |
| 114 | of these options: |
| 115 | - a name of chart available via the repos known by OSM |
| 116 | - a path to a packaged chart |
| 117 | - a path to an unpacked chart directory or a URL |
| 118 | :param kdu_instance: Kdu instance name |
| 119 | :param atomic: If set, installation process purges chart/bundle on fail, also |
| 120 | will wait until all the K8s objects are active |
| 121 | :param timeout: Time in seconds to wait for the install of the chart/bundle |
| 122 | (defaults to Helm default timeout: 300s) |
| 123 | :param params: dictionary of key-value pairs for instantiation parameters |
| 124 | (overriding default values) |
| 125 | :param dict db_dict: where to write into database when the status changes. |
| 126 | It contains a dict with {collection: <str>, filter: {}, |
| 127 | path: <str>}, |
| 128 | e.g. {collection: "nsrs", filter: |
| 129 | {_id: <nsd-id>, path: "_admin.deployed.K8S.3"} |
| 130 | :param kdu_name: Name of the KDU instance to be installed |
| 131 | :param namespace: K8s namespace to use for the KDU instance |
| 132 | :param kwargs: Additional parameters (None yet) |
| 133 | :return: True if successful |
| 134 | """ |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 135 | _, cluster_id = self._get_namespace_cluster_id(cluster_uuid) |
| 136 | self.log.debug("installing {} in cluster {}".format(kdu_model, cluster_id)) |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 137 | |
| 138 | # sync local dir |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 139 | self.fs.sync(from_path=cluster_id) |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 140 | |
| 141 | # init env, paths |
| 142 | paths, env = self._init_paths_env( |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 143 | cluster_name=cluster_id, create_if_not_exist=True |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 144 | ) |
| 145 | |
| David Garcia | c4da25c | 2021-02-23 11:47:29 +0100 | [diff] [blame] | 146 | await self._install_impl( |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 147 | cluster_id, |
| David Garcia | c4da25c | 2021-02-23 11:47:29 +0100 | [diff] [blame] | 148 | kdu_model, |
| 149 | paths, |
| 150 | env, |
| 151 | kdu_instance, |
| 152 | atomic=atomic, |
| 153 | timeout=timeout, |
| 154 | params=params, |
| 155 | db_dict=db_dict, |
| 156 | kdu_name=kdu_name, |
| 157 | namespace=namespace, |
| 158 | ) |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 159 | |
| 160 | # sync fs |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 161 | self.fs.reverse_sync(from_path=cluster_id) |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 162 | |
| 163 | self.log.debug("Returning kdu_instance {}".format(kdu_instance)) |
| David Garcia | c4da25c | 2021-02-23 11:47:29 +0100 | [diff] [blame] | 164 | return True |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 165 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 166 | async def inspect_kdu(self, kdu_model: str, repo_url: str = None) -> str: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 167 | self.log.debug( |
| 168 | "inspect kdu_model {} from (optional) repo: {}".format(kdu_model, repo_url) |
| 169 | ) |
| 170 | |
| 171 | return await self._exec_inspect_comand( |
| 172 | inspect_command="", kdu_model=kdu_model, repo_url=repo_url |
| 173 | ) |
| 174 | |
| 175 | """ |
| 176 | #################################################################################### |
| 177 | ################################### P R I V A T E ################################## |
| 178 | #################################################################################### |
| 179 | """ |
| 180 | |
| 181 | def _init_paths_env(self, cluster_name: str, create_if_not_exist: bool = True): |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 182 | """ |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 183 | Creates and returns base cluster and kube dirs and returns them. |
| 184 | Also created helm3 dirs according to new directory specification, paths are |
| 185 | returned and also environment variables that must be provided to execute commands |
| 186 | |
| 187 | Helm 2 directory specification uses helm_home dir: |
| 188 | |
| 189 | The variables assigned for this paths are: |
| 190 | - Helm hone: $HELM_HOME |
| 191 | - helm kubeconfig: $KUBECONFIG |
| 192 | |
| 193 | :param cluster_name: cluster_name |
| 194 | :return: Dictionary with config_paths and dictionary with helm environment variables |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 195 | """ |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 196 | base = self.fs.path |
| 197 | if base.endswith("/") or base.endswith("\\"): |
| 198 | base = base[:-1] |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 199 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 200 | # base dir for cluster |
| 201 | cluster_dir = base + "/" + cluster_name |
| garciadeblas | 54771fa | 2019-12-13 13:39:03 +0100 | [diff] [blame] | 202 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 203 | # kube dir |
| 204 | kube_dir = cluster_dir + "/" + ".kube" |
| 205 | if create_if_not_exist and not os.path.exists(kube_dir): |
| 206 | self.log.debug("Creating dir {}".format(kube_dir)) |
| 207 | os.makedirs(kube_dir) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 208 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 209 | # helm home dir |
| 210 | helm_dir = cluster_dir + "/" + ".helm" |
| 211 | if create_if_not_exist and not os.path.exists(helm_dir): |
| 212 | self.log.debug("Creating dir {}".format(helm_dir)) |
| 213 | os.makedirs(helm_dir) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 214 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 215 | config_filename = kube_dir + "/config" |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 216 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 217 | # 2 - Prepare dictionary with paths |
| 218 | paths = { |
| 219 | "kube_dir": kube_dir, |
| 220 | "kube_config": config_filename, |
| 221 | "cluster_dir": cluster_dir, |
| 222 | "helm_dir": helm_dir, |
| 223 | } |
| 224 | |
| 225 | for file_name, file in paths.items(): |
| 226 | if "dir" in file_name and not os.path.exists(file): |
| 227 | err_msg = "{} dir does not exist".format(file) |
| 228 | self.log.error(err_msg) |
| 229 | raise K8sException(err_msg) |
| 230 | |
| 231 | # 3 - Prepare environment variables |
| 232 | env = {"HELM_HOME": helm_dir, "KUBECONFIG": config_filename} |
| 233 | |
| 234 | return paths, env |
| 235 | |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 236 | async def _get_services(self, cluster_id, kdu_instance, namespace, kubeconfig): |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 237 | # init config, env |
| 238 | paths, env = self._init_paths_env( |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 239 | cluster_name=cluster_id, create_if_not_exist=True |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 240 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 241 | |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 242 | command1 = "env KUBECONFIG={} {} get manifest {} ".format( |
| 243 | kubeconfig, self._helm_command, kdu_instance |
| 244 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 245 | command2 = "{} get --namespace={} -f -".format(self.kubectl_command, namespace) |
| 246 | output, _rc = await self._local_async_exec_pipe( |
| 247 | command1, command2, env=env, raise_exception_on_error=True |
| 248 | ) |
| 249 | services = self._parse_services(output) |
| 250 | |
| 251 | return services |
| 252 | |
| garciadeblas | 82b591c | 2021-03-24 09:22:13 +0100 | [diff] [blame] | 253 | async def _cluster_init( |
| 254 | self, cluster_id: str, namespace: str, paths: dict, env: dict |
| 255 | ): |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 256 | """ |
| 257 | Implements the helm version dependent cluster initialization: |
| 258 | For helm2 it initialized tiller environment if needed |
| 259 | """ |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 260 | |
| 261 | # check if tiller pod is up in cluster |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 262 | command = "{} --kubeconfig={} --namespace={} get deployments".format( |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 263 | self.kubectl_command, paths["kube_config"], namespace |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 264 | ) |
| 265 | output, _rc = await self._local_async_exec( |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 266 | command=command, raise_exception_on_error=True, env=env |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 267 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 268 | |
| tierno | 119f723 | 2020-04-21 13:22:26 +0000 | [diff] [blame] | 269 | output_table = self._output_to_table(output=output) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 270 | |
| 271 | # find 'tiller' pod in all pods |
| 272 | already_initialized = False |
| 273 | try: |
| 274 | for row in output_table: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 275 | if row[0].startswith("tiller-deploy"): |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 276 | already_initialized = True |
| 277 | break |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 278 | except Exception: |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 279 | pass |
| 280 | |
| 281 | # helm init |
| 282 | n2vc_installed_sw = False |
| 283 | if not already_initialized: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 284 | self.log.info( |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 285 | "Initializing helm in client and server: {}".format(cluster_id) |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 286 | ) |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 287 | command = "{} --kubeconfig={} --namespace kube-system create serviceaccount {}".format( |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 288 | self.kubectl_command, paths["kube_config"], self.service_account |
| 289 | ) |
| 290 | _, _rc = await self._local_async_exec( |
| 291 | command=command, raise_exception_on_error=False, env=env |
| 292 | ) |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 293 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 294 | command = ( |
| 295 | "{} --kubeconfig={} create clusterrolebinding osm-tiller-cluster-rule " |
| 296 | "--clusterrole=cluster-admin --serviceaccount=kube-system:{}" |
| 297 | ).format(self.kubectl_command, paths["kube_config"], self.service_account) |
| 298 | _, _rc = await self._local_async_exec( |
| 299 | command=command, raise_exception_on_error=False, env=env |
| 300 | ) |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 301 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 302 | command = ( |
| Gabriel Cuba | 5749c53 | 2022-07-05 15:07:33 -0500 | [diff] [blame] | 303 | "{} init --kubeconfig={} --tiller-namespace={} --home={} --service-account {} " |
| 304 | " {}" |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 305 | ).format( |
| 306 | self._helm_command, |
| 307 | paths["kube_config"], |
| 308 | namespace, |
| 309 | paths["helm_dir"], |
| 310 | self.service_account, |
| David Garcia | dd32206 | 2021-05-28 16:21:51 +0200 | [diff] [blame] | 311 | "--stable-repo-url {}".format(self._stable_repo_url) |
| 312 | if self._stable_repo_url |
| 313 | else "--skip-repos", |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 314 | ) |
| 315 | _, _rc = await self._local_async_exec( |
| 316 | command=command, raise_exception_on_error=True, env=env |
| 317 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 318 | n2vc_installed_sw = True |
| 319 | else: |
| 320 | # check client helm installation |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 321 | check_file = paths["helm_dir"] + "/repository/repositories.yaml" |
| 322 | if not self._check_file_exists( |
| 323 | filename=check_file, exception_if_not_exists=False |
| 324 | ): |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 325 | self.log.info("Initializing helm in client: {}".format(cluster_id)) |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 326 | command = ( |
| Gabriel Cuba | 5749c53 | 2022-07-05 15:07:33 -0500 | [diff] [blame] | 327 | "{} init --kubeconfig={} --tiller-namespace={} " |
| 328 | "--home={} --client-only {} " |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 329 | ).format( |
| 330 | self._helm_command, |
| 331 | paths["kube_config"], |
| 332 | namespace, |
| 333 | paths["helm_dir"], |
| David Garcia | dd32206 | 2021-05-28 16:21:51 +0200 | [diff] [blame] | 334 | "--stable-repo-url {}".format(self._stable_repo_url) |
| 335 | if self._stable_repo_url |
| 336 | else "--skip-repos", |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 337 | ) |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 338 | output, _rc = await self._local_async_exec( |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 339 | command=command, raise_exception_on_error=True, env=env |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 340 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 341 | else: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 342 | self.log.info("Helm client already initialized") |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 343 | |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 344 | # remove old stable repo and add new one |
| 345 | cluster_uuid = "{}:{}".format(namespace, cluster_id) |
| 346 | repo_list = await self.repo_list(cluster_uuid) |
| lloretgalleg | 83e5589 | 2020-12-17 12:42:11 +0000 | [diff] [blame] | 347 | for repo in repo_list: |
| 348 | if repo["name"] == "stable" and repo["url"] != self._stable_repo_url: |
| 349 | self.log.debug("Add new stable repo url: {}") |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 350 | await self.repo_remove(cluster_uuid, "stable") |
| David Garcia | dd32206 | 2021-05-28 16:21:51 +0200 | [diff] [blame] | 351 | if self._stable_repo_url: |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 352 | await self.repo_add(cluster_uuid, "stable", self._stable_repo_url) |
| lloretgalleg | 83e5589 | 2020-12-17 12:42:11 +0000 | [diff] [blame] | 353 | break |
| 354 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 355 | return n2vc_installed_sw |
| lloretgalleg | e308c71 | 2020-09-02 09:40:38 +0000 | [diff] [blame] | 356 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 357 | async def _uninstall_sw(self, cluster_id: str, namespace: str): |
| 358 | # uninstall Tiller if necessary |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 359 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 360 | self.log.debug("Uninstalling tiller from cluster {}".format(cluster_id)) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 361 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 362 | # init paths, env |
| 363 | paths, env = self._init_paths_env( |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 364 | cluster_name=cluster_id, create_if_not_exist=True |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 365 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 366 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 367 | if not namespace: |
| 368 | # find namespace for tiller pod |
| 369 | command = "{} --kubeconfig={} get deployments --all-namespaces".format( |
| 370 | self.kubectl_command, paths["kube_config"] |
| 371 | ) |
| 372 | output, _rc = await self._local_async_exec( |
| 373 | command=command, raise_exception_on_error=False, env=env |
| 374 | ) |
| 375 | output_table = self._output_to_table(output=output) |
| 376 | namespace = None |
| 377 | for r in output_table: |
| 378 | try: |
| 379 | if "tiller-deploy" in r[1]: |
| 380 | namespace = r[0] |
| 381 | break |
| 382 | except Exception: |
| 383 | pass |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 384 | else: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 385 | msg = "Tiller deployment not found in cluster {}".format(cluster_id) |
| 386 | self.log.error(msg) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 387 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 388 | self.log.debug("namespace for tiller: {}".format(namespace)) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 389 | |
| tierno | 53555f6 | 2020-04-07 11:08:16 +0000 | [diff] [blame] | 390 | if namespace: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 391 | # uninstall tiller from cluster |
| 392 | self.log.debug("Uninstalling tiller from cluster {}".format(cluster_id)) |
| 393 | command = "{} --kubeconfig={} --home={} reset".format( |
| 394 | self._helm_command, paths["kube_config"], paths["helm_dir"] |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 395 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 396 | self.log.debug("resetting: {}".format(command)) |
| 397 | output, _rc = await self._local_async_exec( |
| 398 | command=command, raise_exception_on_error=True, env=env |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 399 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 400 | # Delete clusterrolebinding and serviceaccount. |
| 401 | # Ignore if errors for backward compatibility |
| 402 | command = ( |
| 403 | "{} --kubeconfig={} delete clusterrolebinding.rbac.authorization.k8s." |
| 404 | "io/osm-tiller-cluster-rule" |
| 405 | ).format(self.kubectl_command, paths["kube_config"]) |
| 406 | output, _rc = await self._local_async_exec( |
| 407 | command=command, raise_exception_on_error=False, env=env |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 408 | ) |
| David Garcia | 2a10e43 | 2022-06-17 14:27:54 +0200 | [diff] [blame] | 409 | command = "{} --kubeconfig={} --namespace kube-system delete serviceaccount/{}".format( |
| 410 | self.kubectl_command, paths["kube_config"], self.service_account |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 411 | ) |
| 412 | output, _rc = await self._local_async_exec( |
| 413 | command=command, raise_exception_on_error=False, env=env |
| 414 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 415 | |
| 416 | else: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 417 | self.log.debug("namespace not found") |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 418 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 419 | async def _instances_list(self, cluster_id): |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 420 | # init paths, env |
| 421 | paths, env = self._init_paths_env( |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 422 | cluster_name=cluster_id, create_if_not_exist=True |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 423 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 424 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 425 | command = "{} list --output yaml".format(self._helm_command) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 426 | |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 427 | output, _rc = await self._local_async_exec( |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 428 | command=command, raise_exception_on_error=True, env=env |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 429 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 430 | |
| 431 | if output and len(output) > 0: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 432 | # parse yaml and update keys to lower case to unify with helm3 |
| 433 | instances = yaml.load(output, Loader=yaml.SafeLoader).get("Releases") |
| 434 | new_instances = [] |
| 435 | for instance in instances: |
| 436 | new_instance = dict((k.lower(), v) for k, v in instance.items()) |
| 437 | new_instances.append(new_instance) |
| 438 | return new_instances |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 439 | else: |
| 440 | return [] |
| 441 | |
| garciadeblas | 82b591c | 2021-03-24 09:22:13 +0100 | [diff] [blame] | 442 | def _get_inspect_command( |
| 443 | self, show_command: str, kdu_model: str, repo_str: str, version: str |
| 444 | ): |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 445 | inspect_command = "{} inspect {} {}{} {}".format( |
| 446 | self._helm_command, show_command, kdu_model, repo_str, version |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 447 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 448 | return inspect_command |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 449 | |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 450 | async def _status_kdu( |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 451 | self, |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 452 | cluster_id: str, |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 453 | kdu_instance: str, |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 454 | namespace: str = None, |
| Pedro Escaleira | d901a80 | 2022-04-05 17:32:13 +0100 | [diff] [blame] | 455 | yaml_format: bool = False, |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 456 | show_error_log: bool = False, |
| Pedro Escaleira | d901a80 | 2022-04-05 17:32:13 +0100 | [diff] [blame] | 457 | ) -> Union[str, dict]: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 458 | self.log.debug( |
| 459 | "status of kdu_instance: {}, namespace: {} ".format(kdu_instance, namespace) |
| 460 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 461 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 462 | # init config, env |
| 463 | paths, env = self._init_paths_env( |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 464 | cluster_name=cluster_id, create_if_not_exist=True |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 465 | ) |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 466 | command = ("env KUBECONFIG={} {} status {} --output yaml").format( |
| 467 | paths["kube_config"], self._helm_command, kdu_instance |
| 468 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 469 | output, rc = await self._local_async_exec( |
| 470 | command=command, |
| 471 | raise_exception_on_error=True, |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 472 | show_error_log=show_error_log, |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 473 | env=env, |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 474 | ) |
| 475 | |
| Pedro Escaleira | d901a80 | 2022-04-05 17:32:13 +0100 | [diff] [blame] | 476 | if yaml_format: |
| quilesj | 1be0630 | 2019-11-29 11:17:11 +0000 | [diff] [blame] | 477 | return str(output) |
| 478 | |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 479 | if rc != 0: |
| 480 | return None |
| 481 | |
| 482 | data = yaml.load(output, Loader=yaml.SafeLoader) |
| 483 | |
| 484 | # remove field 'notes' |
| 485 | try: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 486 | del data.get("info").get("status")["notes"] |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 487 | except KeyError: |
| 488 | pass |
| 489 | |
| Pedro Escaleira | beaac1e | 2022-04-03 13:51:46 +0100 | [diff] [blame] | 490 | # parse the manifest to a list of dictionaries |
| 491 | if "manifest" in data: |
| 492 | manifest_str = data.get("manifest") |
| 493 | manifest_docs = yaml.load_all(manifest_str, Loader=yaml.SafeLoader) |
| 494 | |
| 495 | data["manifest"] = [] |
| 496 | for doc in manifest_docs: |
| 497 | data["manifest"].append(doc) |
| 498 | |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 499 | # parse field 'resources' |
| 500 | try: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 501 | resources = str(data.get("info").get("status").get("resources")) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 502 | resource_table = self._output_to_table(resources) |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 503 | data.get("info").get("status")["resources"] = resource_table |
| 504 | except Exception: |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 505 | pass |
| 506 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 507 | # set description to lowercase (unify with helm3) |
| 508 | try: |
| 509 | data.get("info")["description"] = data.get("info").pop("Description") |
| 510 | except KeyError: |
| 511 | pass |
| 512 | |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 513 | return data |
| 514 | |
| lloretgalleg | 095392b | 2020-11-20 11:28:08 +0000 | [diff] [blame] | 515 | def _get_helm_chart_repos_ids(self, cluster_uuid) -> list: |
| 516 | repo_ids = [] |
| 517 | cluster_filter = {"_admin.helm-chart.id": cluster_uuid} |
| 518 | cluster = self.db.get_one("k8sclusters", cluster_filter) |
| 519 | if cluster: |
| 520 | repo_ids = cluster.get("_admin").get("helm_chart_repos") or [] |
| 521 | return repo_ids |
| 522 | else: |
| 523 | raise K8sException( |
| 524 | "k8cluster with helm-id : {} not found".format(cluster_uuid) |
| 525 | ) |
| 526 | |
| tierno | a5728bf | 2020-06-25 15:48:52 +0000 | [diff] [blame] | 527 | async def _is_install_completed(self, cluster_id: str, kdu_instance: str) -> bool: |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 528 | # init config, env |
| 529 | paths, env = self._init_paths_env( |
| 530 | cluster_name=cluster_id, create_if_not_exist=True |
| 531 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 532 | |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 533 | status = await self._status_kdu( |
| Pedro Escaleira | d901a80 | 2022-04-05 17:32:13 +0100 | [diff] [blame] | 534 | cluster_id=cluster_id, kdu_instance=kdu_instance, yaml_format=False |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 535 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 536 | |
| 537 | # extract info.status.resources-> str |
| 538 | # format: |
| 539 | # ==> v1/Deployment |
| 540 | # NAME READY UP-TO-DATE AVAILABLE AGE |
| 541 | # halting-horse-mongodb 0/1 1 0 0s |
| 542 | # halting-petit-mongodb 1/1 1 0 0s |
| 543 | # blank line |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 544 | resources = K8sHelmBaseConnector._get_deep( |
| 545 | status, ("info", "status", "resources") |
| 546 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 547 | |
| 548 | # convert to table |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 549 | resources = K8sHelmBaseConnector._output_to_table(resources) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 550 | |
| 551 | num_lines = len(resources) |
| 552 | index = 0 |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 553 | ready = True |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 554 | while index < num_lines: |
| 555 | try: |
| 556 | line1 = resources[index] |
| 557 | index += 1 |
| 558 | # find '==>' in column 0 |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 559 | if line1[0] == "==>": |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 560 | line2 = resources[index] |
| 561 | index += 1 |
| 562 | # find READY in column 1 |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 563 | if line2[1] == "READY": |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 564 | # read next lines |
| 565 | line3 = resources[index] |
| 566 | index += 1 |
| 567 | while len(line3) > 1 and index < num_lines: |
| 568 | ready_value = line3[1] |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 569 | parts = ready_value.split(sep="/") |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 570 | current = int(parts[0]) |
| 571 | total = int(parts[1]) |
| 572 | if current < total: |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 573 | self.log.debug("NOT READY:\n {}".format(line3)) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 574 | ready = False |
| 575 | line3 = resources[index] |
| 576 | index += 1 |
| 577 | |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 578 | except Exception: |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 579 | pass |
| 580 | |
| 581 | return ready |
| 582 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 583 | def _get_install_command( |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 584 | self, |
| 585 | kdu_model, |
| 586 | kdu_instance, |
| 587 | namespace, |
| 588 | params_str, |
| 589 | version, |
| 590 | atomic, |
| 591 | timeout, |
| 592 | kubeconfig, |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 593 | ) -> str: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 594 | timeout_str = "" |
| 595 | if timeout: |
| 596 | timeout_str = "--timeout {}".format(timeout) |
| lloretgalleg | d99f3f2 | 2020-06-29 14:18:30 +0000 | [diff] [blame] | 597 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 598 | # atomic |
| 599 | atomic_str = "" |
| 600 | if atomic: |
| 601 | atomic_str = "--atomic" |
| 602 | # namespace |
| 603 | namespace_str = "" |
| 604 | if namespace: |
| 605 | namespace_str = "--namespace {}".format(namespace) |
| lloretgalleg | d99f3f2 | 2020-06-29 14:18:30 +0000 | [diff] [blame] | 606 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 607 | # version |
| 608 | version_str = "" |
| 609 | if version: |
| 610 | version_str = version_str = "--version {}".format(version) |
| lloretgalleg | d99f3f2 | 2020-06-29 14:18:30 +0000 | [diff] [blame] | 611 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 612 | command = ( |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 613 | "env KUBECONFIG={kubeconfig} {helm} install {atomic} --output yaml " |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 614 | "{params} {timeout} --name={name} {ns} {model} {ver}".format( |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 615 | kubeconfig=kubeconfig, |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 616 | helm=self._helm_command, |
| 617 | atomic=atomic_str, |
| 618 | params=params_str, |
| 619 | timeout=timeout_str, |
| 620 | name=kdu_instance, |
| 621 | ns=namespace_str, |
| 622 | model=kdu_model, |
| 623 | ver=version_str, |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 624 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 625 | ) |
| 626 | return command |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 627 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 628 | def _get_upgrade_command( |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 629 | self, |
| 630 | kdu_model, |
| 631 | kdu_instance, |
| 632 | namespace, |
| 633 | params_str, |
| 634 | version, |
| 635 | atomic, |
| 636 | timeout, |
| 637 | kubeconfig, |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 638 | ) -> str: |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 639 | timeout_str = "" |
| 640 | if timeout: |
| 641 | timeout_str = "--timeout {}".format(timeout) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 642 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 643 | # atomic |
| 644 | atomic_str = "" |
| 645 | if atomic: |
| 646 | atomic_str = "--atomic" |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 647 | |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 648 | # version |
| 649 | version_str = "" |
| 650 | if version: |
| 651 | version_str = "--version {}".format(version) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 652 | |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 653 | command = ( |
| 654 | "env KUBECONFIG={kubeconfig} {helm} upgrade {atomic} --output yaml {params} {timeout} {name} {model} {ver}" |
| 655 | ).format( |
| 656 | kubeconfig=kubeconfig, |
| garciadeblas | 82b591c | 2021-03-24 09:22:13 +0100 | [diff] [blame] | 657 | helm=self._helm_command, |
| 658 | atomic=atomic_str, |
| 659 | params=params_str, |
| 660 | timeout=timeout_str, |
| 661 | name=kdu_instance, |
| 662 | model=kdu_model, |
| 663 | ver=version_str, |
| 664 | ) |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 665 | return command |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 666 | |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 667 | def _get_rollback_command( |
| 668 | self, kdu_instance, namespace, revision, kubeconfig |
| 669 | ) -> str: |
| 670 | return "env KUBECONFIG={} {} rollback {} {} --wait".format( |
| 671 | kubeconfig, self._helm_command, kdu_instance, revision |
| lloretgalleg | 1c83f2e | 2020-10-22 09:12:35 +0000 | [diff] [blame] | 672 | ) |
| quilesj | 26c78a4 | 2019-10-28 18:10:42 +0100 | [diff] [blame] | 673 | |
| David Garcia | 05bccf7 | 2022-02-02 11:35:20 +0100 | [diff] [blame] | 674 | def _get_uninstall_command( |
| 675 | self, kdu_instance: str, namespace: str, kubeconfig: str |
| 676 | ) -> str: |
| 677 | return "env KUBECONFIG={} {} delete --purge {}".format( |
| 678 | kubeconfig, self._helm_command, kdu_instance |
| 679 | ) |