Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 1 | package com.mirantis.mk |
| 2 | |
| 3 | /** |
| 4 | * |
| 5 | * Openstack functions |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | /** |
Tomáš Kukrál | c3964e5 | 2017-02-22 14:07:37 +0100 | [diff] [blame] | 10 | * Convert maps |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | @NonCPS def entries(m) { |
| 15 | return m.collect {k, v -> [k, v]} |
| 16 | } |
| 17 | |
| 18 | /** |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 19 | * Install OpenStack service clients in isolated environment |
| 20 | * |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 21 | * @param path Path where virtualenv is created |
| 22 | * @param version Version of the OpenStack clients |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 23 | */ |
| 24 | |
Vasyl Saienko | 9a2bd37 | 2020-01-13 10:00:04 +0200 | [diff] [blame] | 25 | def setupOpenstackVirtualenv(path, version = 'latest', python="python2") { |
| 26 | def pythonLib = new com.mirantis.mk.Python() |
| 27 | pythonLib.setupDocutilsVirtualenv(path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 28 | |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 29 | def openstack_kilo_packages = [ |
| 30 | //XXX: hack to fix https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1635463 |
| 31 | 'cliff==2.8', |
| 32 | 'python-cinderclient>=1.3.1,<1.4.0', |
| 33 | 'python-glanceclient>=0.19.0,<0.20.0', |
| 34 | 'python-heatclient>=0.6.0,<0.7.0', |
| 35 | 'python-keystoneclient>=1.6.0,<1.7.0', |
| 36 | 'python-neutronclient>=2.2.6,<2.3.0', |
| 37 | 'python-novaclient>=2.19.0,<2.20.0', |
| 38 | 'python-swiftclient>=2.5.0,<2.6.0', |
| 39 | 'python-openstackclient>=1.7.0,<1.8.0', |
| 40 | 'oslo.config>=2.2.0,<2.3.0', |
| 41 | 'oslo.i18n>=2.3.0,<2.4.0', |
| 42 | 'oslo.serialization>=1.8.0,<1.9.0', |
| 43 | 'oslo.utils>=1.4.0,<1.5.0', |
Denis Egorenko | 97ef0fb | 2020-01-13 14:22:49 +0400 | [diff] [blame] | 44 | 'docutils==0.16' |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 45 | ] |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 46 | |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 47 | def openstack_latest_packages = [ |
| 48 | //XXX: hack to fix https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1635463 |
| 49 | 'cliff==2.8', |
| 50 | // NOTE(vsaienko): cmd2 is dependency for cliff, since we don't using upper-contstraints |
| 51 | // we have to pin cmd2 < 0.9.0 as later versions are not compatible with python2. |
| 52 | // the same for warlock package due: https://github.com/bcwaldon/warlock/commit/4241a7a9fbccfce7eb3298c2abdf00ca2dede64a |
| 53 | // TODO(vsaienko): use upper-constraints here, as in requirements we set only lowest library |
| 54 | // versions. |
| 55 | 'cmd2<0.9.0;python_version=="2.7"', |
| 56 | 'cmd2>=0.9.1;python_version=="3.4"', |
| 57 | 'cmd2>=0.9.1;python_version=="3.5"', |
| 58 | 'warlock<=1.3.1;python_version=="2.7"', |
| 59 | 'warlock>1.3.1;python_version=="3.4"', |
| 60 | 'warlock>1.3.1;python_version=="3.5"', |
Denis Egorenko | 97ef0fb | 2020-01-13 14:22:49 +0400 | [diff] [blame] | 61 | // NOTE: pin client packages to current latest to prevent |
| 62 | // downloading packages which are not support Python 2.7 |
Vladimir Khlyunev | df7dd34 | 2022-11-24 23:29:47 +0400 | [diff] [blame] | 63 | 'keystoneauth1<=5.0.0', |
Denis Egorenko | 97ef0fb | 2020-01-13 14:22:49 +0400 | [diff] [blame] | 64 | 'python-openstackclient==4.0.0', |
Vasyl Saienko | efd68d9 | 2021-09-21 11:56:52 +0300 | [diff] [blame] | 65 | 'python-ironicclient==3.1.2', |
Mykyta Karpin | 4ed4a81 | 2020-03-26 16:31:26 +0200 | [diff] [blame] | 66 | 'openstacksdk<0.44.0', |
Denis Egorenko | 97ef0fb | 2020-01-13 14:22:49 +0400 | [diff] [blame] | 67 | 'python-octaviaclient==1.11.0', |
Vasyl Saienko | f5df202 | 2020-01-13 18:25:44 +0200 | [diff] [blame] | 68 | 'python-heatclient==1.18.0', |
Mykyta Karpin | e7c7861 | 2020-09-09 11:24:41 +0300 | [diff] [blame] | 69 | 'docutils==0.16', |
| 70 | 'pyrsistent<0.17.1', |
Mykyta Karpin | 1bdfbd2 | 2021-04-02 10:28:55 +0300 | [diff] [blame] | 71 | 'decorator<5.0.0', |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 72 | ] |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 73 | |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 74 | if (version == 'kilo') { |
| 75 | requirements = openstack_kilo_packages |
| 76 | } else if (version == 'liberty') { |
| 77 | requirements = openstack_kilo_packages |
| 78 | } else if (version == 'mitaka') { |
| 79 | requirements = openstack_kilo_packages |
Tomáš Kukrál | 381a8c9 | 2017-06-21 09:01:52 +0200 | [diff] [blame] | 80 | } else { |
Aleksey Zvyagintsev | de345a9 | 2019-07-30 11:32:45 +0000 | [diff] [blame] | 81 | requirements = openstack_latest_packages |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 82 | } |
Vasyl Saienko | 9a2bd37 | 2020-01-13 10:00:04 +0200 | [diff] [blame] | 83 | pythonLib.setupVirtualenv(path, python, requirements, null, true) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /** |
| 87 | * create connection to OpenStack API endpoint |
| 88 | * |
Jakub Josef | 6c96376 | 2018-01-18 16:02:22 +0100 | [diff] [blame] | 89 | * @param path Path to created venv |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 90 | * @param url OpenStack API endpoint address |
| 91 | * @param credentialsId Credentials to the OpenStack API |
| 92 | * @param project OpenStack project to connect to |
| 93 | */ |
Jakub Josef | 6c96376 | 2018-01-18 16:02:22 +0100 | [diff] [blame] | 94 | def createOpenstackEnv(path, url, credentialsId, project, project_domain="default", |
Tomáš Kukrál | 381a8c9 | 2017-06-21 09:01:52 +0200 | [diff] [blame] | 95 | project_id="", user_domain="default", api_ver="2", cacert="/etc/ssl/certs/ca-certificates.crt") { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 96 | def common = new com.mirantis.mk.Common() |
Jakub Josef | 6c96376 | 2018-01-18 16:02:22 +0100 | [diff] [blame] | 97 | rcFile = "${path}/keystonerc" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 98 | creds = common.getPasswordCredentials(credentialsId) |
Alexander Tivelkov | f89a188 | 2017-01-11 13:29:35 +0300 | [diff] [blame] | 99 | rc = """set +x |
| 100 | export OS_USERNAME=${creds.username} |
Ales Komarek | 0e558ee | 2016-12-23 13:02:55 +0100 | [diff] [blame] | 101 | export OS_PASSWORD=${creds.password.toString()} |
| 102 | export OS_TENANT_NAME=${project} |
| 103 | export OS_AUTH_URL=${url} |
| 104 | export OS_AUTH_STRATEGY=keystone |
kairat_kushaev | 0a26bf7 | 2017-05-18 13:20:09 +0400 | [diff] [blame] | 105 | export OS_PROJECT_NAME=${project} |
Jakub Josef | bd92732 | 2017-05-30 13:20:27 +0000 | [diff] [blame] | 106 | export OS_PROJECT_ID=${project_id} |
kairat_kushaev | 0a26bf7 | 2017-05-18 13:20:09 +0400 | [diff] [blame] | 107 | export OS_PROJECT_DOMAIN_ID=${project_domain} |
Jakub Josef | bd92732 | 2017-05-30 13:20:27 +0000 | [diff] [blame] | 108 | export OS_USER_DOMAIN_NAME=${user_domain} |
Kirill Mashchenko | 234708f | 2017-07-20 17:00:01 +0300 | [diff] [blame] | 109 | export OS_IDENTITY_API_VERSION=${api_ver} |
Tomáš Kukrál | 381a8c9 | 2017-06-21 09:01:52 +0200 | [diff] [blame] | 110 | export OS_CACERT=${cacert} |
Alexander Tivelkov | f89a188 | 2017-01-11 13:29:35 +0300 | [diff] [blame] | 111 | set -x |
Ales Komarek | 0e558ee | 2016-12-23 13:02:55 +0100 | [diff] [blame] | 112 | """ |
| 113 | writeFile file: rcFile, text: rc |
| 114 | return rcFile |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Run command with OpenStack env params and optional python env |
| 119 | * |
| 120 | * @param cmd Command to be executed |
| 121 | * @param env Environmental parameters with endpoint credentials |
| 122 | * @param path Optional path to virtualenv with specific clients |
| 123 | */ |
| 124 | def runOpenstackCommand(cmd, venv, path = null) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 125 | def python = new com.mirantis.mk.Python() |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 126 | openstackCmd = ". ${venv}; ${cmd}" |
| 127 | if (path) { |
| 128 | output = python.runVirtualenvCommand(path, openstackCmd) |
| 129 | } |
| 130 | else { |
| 131 | echo("[Command]: ${openstackCmd}") |
| 132 | output = sh ( |
| 133 | script: openstackCmd, |
| 134 | returnStdout: true |
| 135 | ).trim() |
| 136 | } |
| 137 | return output |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Get OpenStack Keystone token for current credentials |
| 142 | * |
| 143 | * @param env Connection parameters for OpenStack API endpoint |
| 144 | * @param path Optional path to the custom virtualenv |
| 145 | */ |
| 146 | def getKeystoneToken(client, path = null) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 147 | def python = new com.mirantis.mk.Python() |
Jakub Josef | bd92732 | 2017-05-30 13:20:27 +0000 | [diff] [blame] | 148 | cmd = "openstack token issue" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 149 | outputTable = runOpenstackCommand(cmd, client, path) |
Ales Komarek | e11e879 | 2016-12-28 09:42:25 +0100 | [diff] [blame] | 150 | output = python.parseTextTable(outputTable, 'item', 'prettytable', path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 151 | return output |
| 152 | } |
| 153 | |
| 154 | /** |
Ales Komarek | 51b7b15 | 2017-06-27 11:14:50 +0200 | [diff] [blame] | 155 | * Create OpenStack environment file |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 156 | * |
| 157 | * @param env Connection parameters for OpenStack API endpoint |
| 158 | * @param path Optional path to the custom virtualenv |
| 159 | */ |
| 160 | def createHeatEnv(file, environment = [], original_file = null) { |
| 161 | if (original_file) { |
| 162 | envString = readFile file: original_file |
Tomáš Kukrál | 0302944 | 2017-02-21 17:14:29 +0100 | [diff] [blame] | 163 | } else { |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 164 | envString = "parameters:\n" |
| 165 | } |
Tomáš Kukrál | 0302944 | 2017-02-21 17:14:29 +0100 | [diff] [blame] | 166 | |
Tomáš Kukrál | c3964e5 | 2017-02-22 14:07:37 +0100 | [diff] [blame] | 167 | p = entries(environment) |
Tomáš Kukrál | b1fe964 | 2017-02-22 11:21:17 +0100 | [diff] [blame] | 168 | for (int i = 0; i < p.size(); i++) { |
| 169 | envString = "${envString} ${p.get(i)[0]}: ${p.get(i)[1]}\n" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 170 | } |
Tomáš Kukrál | 0302944 | 2017-02-21 17:14:29 +0100 | [diff] [blame] | 171 | |
Tomáš Kukrál | e19ddea | 2017-02-21 11:09:40 +0100 | [diff] [blame] | 172 | echo("writing to env file:\n${envString}") |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 173 | writeFile file: file, text: envString |
| 174 | } |
| 175 | |
| 176 | /** |
Vasyl Saienko | 0adc34b | 2019-01-23 15:52:37 +0200 | [diff] [blame] | 177 | * Create new OpenStack Heat stack. Will wait for action to be complited in |
| 178 | * specified amount of time (by default 120min) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 179 | * |
| 180 | * @param env Connection parameters for OpenStack API endpoint |
| 181 | * @param template HOT template for the new Heat stack |
| 182 | * @param environment Environmentale parameters of the new Heat stack |
| 183 | * @param name Name of the new Heat stack |
| 184 | * @param path Optional path to the custom virtualenv |
Vasyl Saienko | 0adc34b | 2019-01-23 15:52:37 +0200 | [diff] [blame] | 185 | * @param timeout Optional number in minutes to wait for stack action is applied. |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 186 | */ |
Vasyl Saienko | 0adc34b | 2019-01-23 15:52:37 +0200 | [diff] [blame] | 187 | def createHeatStack(client, name, template, params = [], environment = null, path = null, action="create", timeout=120) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 188 | def python = new com.mirantis.mk.Python() |
Jakub Josef | 0a89876 | 2017-08-11 16:27:44 +0200 | [diff] [blame] | 189 | def templateFile = "${env.WORKSPACE}/template/template/${template}.hot" |
| 190 | def envFile |
| 191 | def envSource |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 192 | if (environment) { |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 193 | envFile = "${env.WORKSPACE}/template/env/${name}.env" |
| 194 | if (environment.contains("/")) { |
| 195 | //init() returns all elements but the last in a collection. |
| 196 | def envPath = environment.tokenize("/").init().join("/") |
| 197 | if (envPath) { |
| 198 | envFile = "${env.WORKSPACE}/template/env/${envPath}/${name}.env" |
| 199 | } |
Ales Komarek | 51b7b15 | 2017-06-27 11:14:50 +0200 | [diff] [blame] | 200 | } |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 201 | envSource = "${env.WORKSPACE}/template/env/${environment}.env" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 202 | createHeatEnv(envFile, params, envSource) |
Jakub Josef | 9a59aeb | 2017-08-11 15:50:20 +0200 | [diff] [blame] | 203 | } else { |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 204 | envFile = "${env.WORKSPACE}/template/${name}.env" |
| 205 | createHeatEnv(envFile, params) |
| 206 | } |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 207 | |
Mykyta Karpin | cf44f81 | 2017-08-28 14:45:21 +0300 | [diff] [blame] | 208 | def cmd |
Vasyl Saienko | b91df80 | 2019-01-23 17:22:57 +0200 | [diff] [blame] | 209 | def cmd_args = "-t ${templateFile} -e ${envFile} --timeout ${timeout} --wait ${name}" |
Mykyta Karpin | cf44f81 | 2017-08-28 14:45:21 +0300 | [diff] [blame] | 210 | |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 211 | if (action == "create") { |
Vasyl Saienko | 0adc34b | 2019-01-23 15:52:37 +0200 | [diff] [blame] | 212 | cmd = "openstack stack create ${cmd_args}" |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 213 | } else { |
Vasyl Saienko | 0adc34b | 2019-01-23 15:52:37 +0200 | [diff] [blame] | 214 | cmd = "openstack stack update ${cmd_args}" |
Tomáš Kukrál | a115274 | 2017-08-22 16:21:50 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 217 | dir("${env.WORKSPACE}/template/template") { |
Vasyl Saienko | d425419 | 2019-01-23 18:02:01 +0200 | [diff] [blame] | 218 | def out = runOpenstackCommand(cmd, client, path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 219 | } |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | /** |
Jakub Josef | db4baf2 | 2017-05-10 15:16:09 +0200 | [diff] [blame] | 223 | * Returns list of stacks for stack name filter |
| 224 | * |
| 225 | * @param client Connection parameters for OpenStack API endpoint |
| 226 | * @param filter Stack name filter |
| 227 | * @param path Optional path to the custom virtualenv |
| 228 | */ |
| 229 | def getStacksForNameContains(client, filter, path = null){ |
Jakub Josef | 6465fca | 2017-05-10 16:09:20 +0200 | [diff] [blame] | 230 | cmd = 'heat stack-list | awk \'NR>3 {print $4}\' | sed \'$ d\' | grep ' + filter + '|| true' |
Jakub Josef | db4baf2 | 2017-05-10 15:16:09 +0200 | [diff] [blame] | 231 | return runOpenstackCommand(cmd, client, path).trim().tokenize("\n") |
| 232 | } |
| 233 | |
| 234 | |
| 235 | /** |
Jakub Josef | 5e238a2 | 2017-04-19 16:35:15 +0200 | [diff] [blame] | 236 | * Get list of stack names with given stack status |
| 237 | * |
Jakub Josef | db4baf2 | 2017-05-10 15:16:09 +0200 | [diff] [blame] | 238 | * @param client Connection parameters for OpenStack API endpoint |
Jakub Josef | 5e238a2 | 2017-04-19 16:35:15 +0200 | [diff] [blame] | 239 | * @param status Stack status |
| 240 | * @param path Optional path to the custom virtualenv |
| 241 | */ |
| 242 | def getStacksWithStatus(client, status, path = null) { |
| 243 | cmd = 'heat stack-list -f stack_status='+status+' | awk \'NR>3 {print $4}\' | sed \'$ d\'' |
| 244 | return runOpenstackCommand(cmd, client, path).trim().tokenize("\n") |
| 245 | } |
| 246 | |
| 247 | /** |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 248 | * Get life cycle status for existing OpenStack Heat stack |
| 249 | * |
| 250 | * @param env Connection parameters for OpenStack API endpoint |
| 251 | * @param name Name of the managed Heat stack instance |
| 252 | * @param path Optional path to the custom virtualenv |
| 253 | */ |
| 254 | def getHeatStackStatus(client, name, path = null) { |
| 255 | cmd = 'heat stack-list | awk -v stack='+name+' \'{if ($4==stack) print $6}\'' |
| 256 | return runOpenstackCommand(cmd, client, path) |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * Get info about existing OpenStack Heat stack |
| 261 | * |
| 262 | * @param env Connection parameters for OpenStack API endpoint |
| 263 | * @param name Name of the managed Heat stack instance |
| 264 | * @param path Optional path to the custom virtualenv |
| 265 | */ |
| 266 | def getHeatStackInfo(env, name, path = null) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 267 | def python = new com.mirantis.mk.Python() |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 268 | cmd = "heat stack-show ${name}" |
| 269 | outputTable = runOpenstackCommand(cmd, env, path) |
Ales Komarek | e11e879 | 2016-12-28 09:42:25 +0100 | [diff] [blame] | 270 | output = python.parseTextTable(outputTable, 'item', 'prettytable', path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 271 | return output |
| 272 | } |
| 273 | |
| 274 | /** |
| 275 | * Get existing OpenStack Heat stack output parameter |
| 276 | * |
| 277 | * @param env Connection parameters for OpenStack API endpoint |
| 278 | * @param name Name of the managed Heat stack |
| 279 | * @param parameter Name of the output parameter |
| 280 | * @param path Optional path to the custom virtualenv |
| 281 | */ |
| 282 | def getHeatStackOutputParam(env, name, outputParam, path = null) { |
Vasyl Saienko | ea4b281 | 2017-07-10 10:36:03 +0000 | [diff] [blame] | 283 | cmd = "heat output-show ${name} ${outputParam}" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 284 | output = runOpenstackCommand(cmd, env, path) |
Ales Komarek | eedc222 | 2017-01-03 10:10:03 +0100 | [diff] [blame] | 285 | echo("${cmd}: ${output}") |
Vasyl Saienko | 2a1c2de | 2017-07-11 11:41:53 +0300 | [diff] [blame] | 286 | // NOTE(vsaienko) heatclient 1.5.1 returns output in "", while later |
| 287 | // versions returns string without "". |
| 288 | // TODO Use openstack 'stack output show' when all jobs using at least Mitaka heatclient |
| 289 | return "${output}".replaceAll('"', '') |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | /** |
| 293 | * List all resources from existing OpenStack Heat stack |
| 294 | * |
| 295 | * @param env Connection parameters for OpenStack API endpoint |
| 296 | * @param name Name of the managed Heat stack instance |
| 297 | * @param path Optional path to the custom virtualenv |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 298 | * @param depth Optional depth of stack for listing resources, |
| 299 | * 0 - do not list nested resources |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 300 | */ |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 301 | def getHeatStackResources(env, name, path = null, depth = 0) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 302 | def python = new com.mirantis.mk.Python() |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 303 | cmd = "heat resource-list --nested-depth ${depth} ${name}" |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 304 | outputTable = runOpenstackCommand(cmd, env, path) |
Ales Komarek | e11e879 | 2016-12-28 09:42:25 +0100 | [diff] [blame] | 305 | output = python.parseTextTable(outputTable, 'list', 'prettytable', path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 306 | return output |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Get info about resource from existing OpenStack Heat stack |
| 311 | * |
| 312 | * @param env Connection parameters for OpenStack API endpoint |
| 313 | * @param name Name of the managed Heat stack instance |
| 314 | * @param path Optional path to the custom virtualenv |
| 315 | */ |
| 316 | def getHeatStackResourceInfo(env, name, resource, path = null) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 317 | def python = new com.mirantis.mk.Python() |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 318 | cmd = "heat resource-show ${name} ${resource}" |
| 319 | outputTable = runOpenstackCommand(cmd, env, path) |
Ales Komarek | e11e879 | 2016-12-28 09:42:25 +0100 | [diff] [blame] | 320 | output = python.parseTextTable(outputTable, 'item', 'prettytable', path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 321 | return output |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * Update existing OpenStack Heat stack |
| 326 | * |
| 327 | * @param env Connection parameters for OpenStack API endpoint |
| 328 | * @param name Name of the managed Heat stack instance |
| 329 | * @param path Optional path to the custom virtualenv |
| 330 | */ |
| 331 | def updateHeatStack(env, name, path = null) { |
iberezovskiy | d4240b5 | 2017-02-20 17:18:28 +0400 | [diff] [blame] | 332 | def python = new com.mirantis.mk.Python() |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 333 | cmd = "heat stack-update ${name}" |
| 334 | outputTable = runOpenstackCommand(cmd, env, path) |
Ales Komarek | e11e879 | 2016-12-28 09:42:25 +0100 | [diff] [blame] | 335 | output = python.parseTextTable(outputTable, 'item', 'prettytable', path) |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 336 | return output |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * Delete existing OpenStack Heat stack |
| 341 | * |
| 342 | * @param env Connection parameters for OpenStack API endpoint |
| 343 | * @param name Name of the managed Heat stack instance |
| 344 | * @param path Optional path to the custom virtualenv |
| 345 | */ |
| 346 | def deleteHeatStack(env, name, path = null) { |
| 347 | cmd = "heat stack-delete ${name}" |
| 348 | outputTable = runOpenstackCommand(cmd, env, path) |
| 349 | } |
| 350 | |
| 351 | /** |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 352 | * Return hashmap of hashes server_id:server_name of servers from OpenStack Heat stack |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 353 | * |
| 354 | * @param env Connection parameters for OpenStack API endpoint |
| 355 | * @param name Name of the managed Heat stack instance |
| 356 | * @param path Optional path to the custom virtualenv |
| 357 | */ |
| 358 | def getHeatStackServers(env, name, path = null) { |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 359 | // set depth to 1000 to ensure all nested resources are shown |
| 360 | resources = getHeatStackResources(env, name, path, 1000) |
| 361 | servers = [:] |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 362 | for (resource in resources) { |
| 363 | if (resource.resource_type == 'OS::Nova::Server') { |
Mykyta Karpin | 6797811 | 2018-02-22 11:16:45 +0200 | [diff] [blame] | 364 | server = getHeatStackResourceInfo(env, resource.stack_name, resource.resource_name, path) |
Mykyta Karpin | 7230636 | 2018-02-08 16:40:43 +0200 | [diff] [blame] | 365 | servers[server.attributes.id] = server.attributes.name |
Sergey Kolekonov | ba20398 | 2016-12-21 18:32:17 +0400 | [diff] [blame] | 366 | } |
| 367 | } |
| 368 | echo("[Stack ${name}] Servers: ${servers}") |
| 369 | return servers |
| 370 | } |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 371 | |
| 372 | /** |
Mykyta Karpin | 8306a9d | 2018-07-27 11:34:10 +0300 | [diff] [blame] | 373 | * Delete nova key pair |
| 374 | * |
| 375 | * @param env Connection parameters for OpenStack API endpoint |
| 376 | * @param name Name of the key pair to delete |
| 377 | * @param path Optional path to the custom virtualenv |
| 378 | */ |
| 379 | def deleteKeyPair(env, name, path = null) { |
| 380 | def common = new com.mirantis.mk.Common() |
| 381 | common.infoMsg("Removing key pair ${name}") |
| 382 | def cmd = "openstack keypair delete ${name}" |
| 383 | runOpenstackCommand(cmd, env, path) |
| 384 | } |
| 385 | |
| 386 | /** |
Oleksii Grudev | 69382ce | 2020-01-03 15:31:57 +0200 | [diff] [blame] | 387 | * Check if Nova keypair exists and delete it. |
| 388 | * |
| 389 | * @param env Connection parameters for OpenStack API endpoint |
| 390 | * @param name Name of the key pair to delete |
| 391 | * @param path Path to virtualenv |
| 392 | **/ |
| 393 | def ensureKeyPairRemoved(String name, env, path) { |
| 394 | def common = new com.mirantis.mk.Common() |
| 395 | def keypairs = runOpenstackCommand("openstack keypair list -f value -c Name", env, path).tokenize('\n') |
| 396 | if (name in keypairs) { |
| 397 | deleteKeyPair(env, name, path) |
| 398 | common.infoMsg("Keypair ${name} has been deleted") |
| 399 | } else { |
| 400 | common.warningMsg("Keypair ${name} not found") |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | /** |
Mykyta Karpin | 8306a9d | 2018-07-27 11:34:10 +0300 | [diff] [blame] | 405 | * Get nova key pair |
| 406 | * |
| 407 | * @param env Connection parameters for OpenStack API endpoint |
| 408 | * @param name Name of the key pair to show |
| 409 | * @param path Optional path to the custom virtualenv |
| 410 | */ |
| 411 | |
| 412 | def getKeyPair(env, name, path = null) { |
| 413 | def common = new com.mirantis.mk.Common() |
| 414 | def cmd = "openstack keypair show ${name}" |
| 415 | def outputTable |
| 416 | try { |
| 417 | outputTable = runOpenstackCommand(cmd, env, path) |
| 418 | } catch (Exception e) { |
| 419 | common.infoMsg("Key pair ${name} not found") |
| 420 | } |
| 421 | return outputTable |
| 422 | } |
| 423 | |
| 424 | /** |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 425 | * Stops all services that contain specific string (for example nova,heat, etc.) |
| 426 | * @param env Salt Connection object or pepperEnv |
| 427 | * @param probe single node on which to list service names |
| 428 | * @param target all targeted nodes |
| 429 | * @param services lists of type of services to be stopped |
Jiri Broulik | f6daac6 | 2018-03-08 13:17:53 +0100 | [diff] [blame] | 430 | * @param confirm enable/disable manual service stop confirmation |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 431 | * @return output of salt commands |
| 432 | */ |
Jiri Broulik | 27e8305 | 2018-03-06 11:37:29 +0100 | [diff] [blame] | 433 | def stopServices(env, probe, target, services=[], confirm=false) { |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 434 | def salt = new com.mirantis.mk.Salt() |
Jiri Broulik | f6daac6 | 2018-03-08 13:17:53 +0100 | [diff] [blame] | 435 | def common = new com.mirantis.mk.Common() |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 436 | for (s in services) { |
Dmitry Ukov | d72cd2a | 2018-09-04 17:31:46 +0400 | [diff] [blame] | 437 | def outputServicesStr = salt.getReturnValues(salt.cmdRun(env, probe, "service --status-all | grep ${s} | awk \'{print \$4}\'")) |
Jiri Broulik | f6daac6 | 2018-03-08 13:17:53 +0100 | [diff] [blame] | 438 | def servicesList = outputServicesStr.tokenize("\n").init() |
Jiri Broulik | 27e8305 | 2018-03-06 11:37:29 +0100 | [diff] [blame] | 439 | if (confirm) { |
Jiri Broulik | f6daac6 | 2018-03-08 13:17:53 +0100 | [diff] [blame] | 440 | if (servicesList) { |
| 441 | try { |
| 442 | input message: "Click PROCEED to stop ${servicesList}. Otherwise click ABORT to skip stopping them." |
| 443 | for (name in servicesList) { |
| 444 | if (!name.contains('Salt command')) { |
Dmitry Ukov | d72cd2a | 2018-09-04 17:31:46 +0400 | [diff] [blame] | 445 | salt.runSaltProcessStep(env, target, 'service.stop', ["${name}"]) |
Jiri Broulik | f6daac6 | 2018-03-08 13:17:53 +0100 | [diff] [blame] | 446 | } |
| 447 | } |
| 448 | } catch (Exception er) { |
| 449 | common.infoMsg("skipping stopping ${servicesList} services") |
| 450 | } |
| 451 | } |
| 452 | } else { |
| 453 | if (servicesList) { |
Jiri Broulik | 27e8305 | 2018-03-06 11:37:29 +0100 | [diff] [blame] | 454 | for (name in servicesList) { |
| 455 | if (!name.contains('Salt command')) { |
Dmitry Ukov | d72cd2a | 2018-09-04 17:31:46 +0400 | [diff] [blame] | 456 | salt.runSaltProcessStep(env, target, 'service.stop', ["${name}"]) |
Jiri Broulik | 27e8305 | 2018-03-06 11:37:29 +0100 | [diff] [blame] | 457 | } |
| 458 | } |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 459 | } |
| 460 | } |
| 461 | } |
| 462 | } |
| 463 | |
| 464 | /** |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 465 | * Return intersection of globally installed services and those are |
| 466 | * defined on specific target according to theirs priorities. |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 467 | * By default services are added to the result list only if |
| 468 | * <service>.upgrade.enabled pillar is set to "True". However if it |
| 469 | * is needed to obtain list of upgrade services regardless of |
| 470 | * <service>.upgrade.enabled pillar value it is needed to set |
| 471 | * "upgrade_condition" param to "False". |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 472 | * |
| 473 | * @param env Salt Connection object or env |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 474 | * @param target The target node to get list of apps for |
| 475 | * @param upgrade_condition Whether to take "upgrade:enabled" |
| 476 | * service pillar into consideration |
| 477 | * when obtaining list of upgrade services |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 478 | **/ |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 479 | def getOpenStackUpgradeServices(env, target, upgrade_condition=true){ |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 480 | def salt = new com.mirantis.mk.Salt() |
| 481 | def common = new com.mirantis.mk.Common() |
| 482 | |
| 483 | def global_apps = salt.getConfig(env, 'I@salt:master:enabled:true', 'orchestration.upgrade.applications') |
| 484 | def node_apps = salt.getPillar(env, target, '__reclass__:applications')['return'][0].values()[0] |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 485 | if (upgrade_condition) { |
| 486 | node_pillar = salt.getPillar(env, target) |
| 487 | } |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 488 | def node_sorted_apps = [] |
| 489 | if ( !global_apps['return'][0].values()[0].isEmpty() ) { |
| 490 | Map<String,Integer> _sorted_apps = [:] |
| 491 | for (k in global_apps['return'][0].values()[0].keySet()) { |
| 492 | if (k in node_apps) { |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 493 | if (upgrade_condition) { |
| 494 | if (node_pillar['return'][0].values()[k]['upgrade']['enabled'][0] != null) { |
| 495 | if (node_pillar['return'][0].values()[k]['upgrade']['enabled'][0].toBoolean()) { |
| 496 | _sorted_apps[k] = global_apps['return'][0].values()[0][k].values()[0].toInteger() |
| 497 | } |
Oleksii Grudev | 3116a73 | 2019-02-14 18:16:05 +0200 | [diff] [blame] | 498 | } |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 499 | } else { |
| 500 | _sorted_apps[k] = global_apps['return'][0].values()[0][k].values()[0].toInteger() |
Oleksii Grudev | 3116a73 | 2019-02-14 18:16:05 +0200 | [diff] [blame] | 501 | } |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 502 | } |
| 503 | } |
| 504 | node_sorted_apps = common.SortMapByValueAsc(_sorted_apps).keySet() |
| 505 | common.infoMsg("Applications are placed in following order:"+node_sorted_apps) |
| 506 | } else { |
| 507 | common.errorMsg("No applications found.") |
| 508 | } |
| 509 | |
| 510 | return node_sorted_apps |
| 511 | } |
| 512 | |
Vasyl Saienko | 4129e10 | 2018-09-03 10:15:52 +0300 | [diff] [blame] | 513 | /** |
| 514 | * Run specified upgrade phase for all services on given node. |
| 515 | * |
| 516 | * @param env Salt Connection object or env |
| 517 | * @param target The target node to run states on. |
| 518 | * @param phase The phase name to run. |
| 519 | **/ |
| 520 | def runOpenStackUpgradePhase(env, target, phase){ |
| 521 | def salt = new com.mirantis.mk.Salt() |
| 522 | def common = new com.mirantis.mk.Common() |
| 523 | |
| 524 | services = getOpenStackUpgradeServices(env, target) |
| 525 | def st |
| 526 | |
| 527 | for (service in services){ |
| 528 | st = "${service}.upgrade.${phase}".trim() |
| 529 | common.infoMsg("Running ${phase} for service ${st} on ${target}") |
| 530 | salt.enforceState(env, target, st) |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | |
| 535 | /** |
| 536 | * Run OpenStack states on specified node. |
| 537 | * |
| 538 | * @param env Salt Connection object or env |
| 539 | * @param target The target node to run states on. |
| 540 | **/ |
| 541 | def applyOpenstackAppsStates(env, target){ |
| 542 | def salt = new com.mirantis.mk.Salt() |
| 543 | def common = new com.mirantis.mk.Common() |
| 544 | |
| 545 | services = getOpenStackUpgradeServices(env, target) |
| 546 | def st |
| 547 | |
| 548 | for (service in services){ |
| 549 | st = "${service}".trim() |
| 550 | common.infoMsg("Running ${st} on ${target}") |
| 551 | salt.enforceState(env, target, st) |
| 552 | } |
| 553 | } |
| 554 | |
Martin Polreich | 232ad90 | 2019-01-21 14:31:00 +0100 | [diff] [blame] | 555 | def verifyGaleraStatus(env, slave=false, checkTimeSync=false) { |
Martin Polreich | 65864b0 | 2018-12-05 10:42:50 +0100 | [diff] [blame] | 556 | def common = new com.mirantis.mk.Common() |
Martin Polreich | 8f0f3ac | 2019-02-15 10:03:33 +0100 | [diff] [blame] | 557 | def galera = new com.mirantis.mk.Galera() |
| 558 | common.warningMsg("verifyGaleraStatus method was moved to Galera class. Please change your calls accordingly.") |
| 559 | return galera.verifyGaleraStatus(env, slave, checkTimeSync) |
Martin Polreich | 65864b0 | 2018-12-05 10:42:50 +0100 | [diff] [blame] | 560 | } |
| 561 | |
Martin Polreich | 9a5d668 | 2018-12-21 16:42:06 +0100 | [diff] [blame] | 562 | def validateAndPrintGaleraStatusReport(env, out, minion) { |
Martin Polreich | 65864b0 | 2018-12-05 10:42:50 +0100 | [diff] [blame] | 563 | def common = new com.mirantis.mk.Common() |
Martin Polreich | 8f0f3ac | 2019-02-15 10:03:33 +0100 | [diff] [blame] | 564 | def galera = new com.mirantis.mk.Galera() |
| 565 | common.warningMsg("validateAndPrintGaleraStatusReport method was moved to Galera class. Please change your calls accordingly.") |
| 566 | return galera.validateAndPrintGaleraStatusReport(env, out, minion) |
Martin Polreich | 65864b0 | 2018-12-05 10:42:50 +0100 | [diff] [blame] | 567 | } |
| 568 | |
Martin Polreich | 9a5d668 | 2018-12-21 16:42:06 +0100 | [diff] [blame] | 569 | def getGaleraLastShutdownNode(env) { |
Martin Polreich | 9a5d668 | 2018-12-21 16:42:06 +0100 | [diff] [blame] | 570 | def common = new com.mirantis.mk.Common() |
Martin Polreich | 8f0f3ac | 2019-02-15 10:03:33 +0100 | [diff] [blame] | 571 | def galera = new com.mirantis.mk.Galera() |
| 572 | common.warningMsg("getGaleraLastShutdownNode method was moved to Galera class. Please change your calls accordingly.") |
| 573 | return galera.getGaleraLastShutdownNode(env) |
Martin Polreich | 9a5d668 | 2018-12-21 16:42:06 +0100 | [diff] [blame] | 574 | } |
| 575 | |
Ivan Berezovskiy | 004cac2 | 2019-02-01 17:03:28 +0400 | [diff] [blame] | 576 | def restoreGaleraDb(env) { |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 577 | def common = new com.mirantis.mk.Common() |
Martin Polreich | 8f0f3ac | 2019-02-15 10:03:33 +0100 | [diff] [blame] | 578 | def galera = new com.mirantis.mk.Galera() |
| 579 | common.warningMsg("restoreGaleraDb method was moved to Galera class. Please change your calls accordingly.") |
| 580 | return galera.restoreGaleraDb(env) |
Oleksii Grudev | 3aaadc2 | 2019-03-14 10:54:58 +0200 | [diff] [blame] | 581 | } |
Oleksandr Kononenko | d8fe24c | 2021-11-19 14:21:08 +0200 | [diff] [blame] | 582 | |
| 583 | /** |
| 584 | * create connection to OpenStack API endpoint via Docker |
| 585 | * |
| 586 | * @param authUrl OpenStack API endpoint address |
| 587 | * @param credentialsId Credentials to the OpenStack API |
| 588 | * @param project OpenStack project to connect to |
| 589 | */ |
| 590 | def createOpenstackEnvInDocker(authUrl, credentialsId, project, project_domain="default", project_id="", user_domain="default", cacert="/etc/ssl/certs/ca-certificates.crt") { |
| 591 | def common = new com.mirantis.mk.Common() |
| 592 | creds = common.getPasswordCredentials(credentialsId) |
Oleksandr Kononenko | 984d7b9 | 2021-12-14 16:34:47 +0200 | [diff] [blame] | 593 | def env = ["OS_USERNAME=${creds.username}", "OS_PASSWORD=${creds.password.toString()}", "OS_TENANT_NAME=${project}", "OS_AUTH_URL=${authUrl}", "OS_AUTH_STRATEGY=keystone -e OS_PROJECT_NAME=${project}", "OS_PROJECT_ID=${project_id}", "OS_PROJECT_DOMAIN_ID=${project_domain}", "OS_USER_DOMAIN_NAME=${user_domain}", "OS_CACERT=${cacert}"] |
Oleksandr Kononenko | d8fe24c | 2021-11-19 14:21:08 +0200 | [diff] [blame] | 594 | return env |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * prepare Docker docker image for OpenstackEnv |
| 599 | * |
| 600 | * @param credentials Credentials for access to artifact-metadata repo |
| 601 | * @param release Optional openstack release for image |
| 602 | * @param img Optional URL for Docker image |
| 603 | */ |
| 604 | def prepareOpenstackDockerImage(credentialsId, release=null, img=null) { |
| 605 | def common = new com.mirantis.mk.Common() |
| 606 | Map getMetadataParams = ['metadataCredentialsId': credentialsId] |
| 607 | if (!img) { |
| 608 | if (!release) { |
| 609 | release = 'ussuri' |
| 610 | } |
| 611 | def releaseWorkflow = new com.mirantis.mk.ReleaseWorkflow() |
| 612 | img = releaseWorkflow.getReleaseMetadataValue("images:openstack:${release}:heat:url", getMetadataParams).replace('"', '') |
| 613 | } |
| 614 | common.infoMsg("Use image ${img}") |
| 615 | return img |
| 616 | } |
| 617 | |
Oleksandr Kononenko | d8fe24c | 2021-11-19 14:21:08 +0200 | [diff] [blame] | 618 | /** |
| 619 | * create connection to OpenStack API endpoint in the Docker container |
| 620 | * |
| 621 | * @param cmd Command to be executed |
| 622 | * @param env Environmental parameters with endpoint credentials (from createOpenstackEnvInDocker) |
| 623 | * @param img Docker image for container (from prepareOpenstackDockerImage) |
| 624 | */ |
| 625 | def runOpenstackCommandInDocker(cmd, env, img) { |
| 626 | def dockerImg = docker.image(img) |
| 627 | def result |
Oleksandr Kononenko | 984d7b9 | 2021-12-14 16:34:47 +0200 | [diff] [blame] | 628 | dockerImg.inside() { |
| 629 | withEnv(env) { |
| 630 | result = sh(script: "${cmd}", returnStdout: true).trim() |
| 631 | } |
Oleksandr Kononenko | d8fe24c | 2021-11-19 14:21:08 +0200 | [diff] [blame] | 632 | } |
| 633 | return result |
| 634 | } |
| 635 | |
| 636 | /** |
| 637 | * Delete nova key pair |
| 638 | * |
| 639 | * @param env Connection parameters for OpenStack API endpoint |
| 640 | * @param name Name of the key pair to delete |
| 641 | */ |
| 642 | def deleteKeyPairInDocker(env, name, img) { |
| 643 | def common = new com.mirantis.mk.Common() |
| 644 | common.infoMsg("Removing key pair ${name}") |
| 645 | def cmd = "openstack keypair delete ${name}" |
| 646 | runOpenstackCommandInDocker(cmd, env, img) |
| 647 | } |
| 648 | |
| 649 | /** |
| 650 | * Check if Nova keypair exists and delete it. |
| 651 | * |
| 652 | * @param env Connection parameters for OpenStack API endpoint |
| 653 | * @param name Name of the key pair to delete |
| 654 | **/ |
| 655 | def ensureKeyPairRemovedInDocker(String name, env, img) { |
| 656 | def common = new com.mirantis.mk.Common() |
| 657 | def keypairs = runOpenstackCommandInDocker("openstack keypair list -f value -c Name", env, img).tokenize('\n') |
| 658 | if (name in keypairs) { |
| 659 | deleteKeyPairInDocker(env, name, img) |
| 660 | common.infoMsg("Keypair ${name} has been deleted") |
| 661 | } else { |
| 662 | common.warningMsg("Keypair ${name} not found") |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | /** |
| 667 | * Get nova key pair |
| 668 | * |
| 669 | * @param env Connection parameters for OpenStack API endpoint |
| 670 | * @param name Name of the key pair to show |
| 671 | */ |
| 672 | def getKeyPairInDocker(env, name, img) { |
| 673 | def common = new com.mirantis.mk.Common() |
| 674 | def cmd = "openstack keypair show ${name}" |
| 675 | def outputTable |
| 676 | try { |
| 677 | outputTable = runOpenstackCommandInDocker(cmd, env, img) |
| 678 | } catch (Exception e) { |
| 679 | common.infoMsg("Key pair ${name} not found") |
| 680 | } |
| 681 | return outputTable |
| 682 | } |