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