blob: 9fa683fdfff65439f1d2e21550ec386f989cd574 [file] [log] [blame]
Sergey Kolekonovba203982016-12-21 18:32:17 +04001package com.mirantis.mk
2
3/**
4 *
5 * Openstack functions
6 *
7 */
8
9/**
Tomáš Kukrálc3964e52017-02-22 14:07:37 +010010 * Convert maps
11 *
12 */
13
14@NonCPS def entries(m) {
15 return m.collect {k, v -> [k, v]}
16}
17
18/**
Sergey Kolekonovba203982016-12-21 18:32:17 +040019 * Install OpenStack service clients in isolated environment
20 *
21 * @param path Path where virtualenv is created
22 * @param version Version of the OpenStack clients
23 */
24
Tomáš Kukrálbee0b992017-08-10 16:50:40 +020025def setupOpenstackVirtualenv(path, version = 'latest') {
iberezovskiyd4240b52017-02-20 17:18:28 +040026 def python = new com.mirantis.mk.Python()
Vasyl Saienko030fc182017-07-12 14:54:42 +030027 python.setupDocutilsVirtualenv(path)
Sergey Kolekonovba203982016-12-21 18:32:17 +040028
29 def openstack_kilo_packages = [
Jakub Josef268bc842017-10-10 14:36:17 +020030 //XXX: hack to fix https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1635463
31 'cliff==2.8',
Sergey Kolekonovba203982016-12-21 18:32:17 +040032 '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',
Jakub Josefbd927322017-05-30 13:20:27 +000039 'python-openstackclient>=1.7.0,<1.8.0',
Sergey Kolekonovba203982016-12-21 18:32:17 +040040 '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',
Jakub Josef60280212017-08-10 19:01:19 +020044 'docutils'
Sergey Kolekonovba203982016-12-21 18:32:17 +040045 ]
46
Tomáš Kukrál381a8c92017-06-21 09:01:52 +020047 def openstack_latest_packages = [
Jakub Josef268bc842017-10-10 14:36:17 +020048 //XXX: hack to fix https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1635463
49 'cliff==2.8',
Vasyl Saienko36a019d2018-05-30 09:51:18 +030050 // 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.
vnaumov0a340f82019-05-20 12:21:47 +040052 // the same for warlock package due: https://github.com/bcwaldon/warlock/commit/4241a7a9fbccfce7eb3298c2abdf00ca2dede64a
Vasyl Saienko36a019d2018-05-30 09:51:18 +030053 // 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"',
vnaumov0a340f82019-05-20 12:21:47 +040058 '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"',
Tomáš Kukrál381a8c92017-06-21 09:01:52 +020061 'python-openstackclient',
vnaumova64a4a62019-03-05 18:39:55 +010062 'python-octaviaclient',
Tomáš Kukrál381a8c92017-06-21 09:01:52 +020063 'python-heatclient',
Jakub Josef60280212017-08-10 19:01:19 +020064 'docutils'
Tomáš Kukrálc6a94c62017-06-19 14:44:24 +020065 ]
Sergey Kolekonovba203982016-12-21 18:32:17 +040066
Tomáš Kukrálc6a94c62017-06-19 14:44:24 +020067 if (version == 'kilo') {
Sergey Kolekonovba203982016-12-21 18:32:17 +040068 requirements = openstack_kilo_packages
Tomáš Kukrálc6a94c62017-06-19 14:44:24 +020069 } else if (version == 'liberty') {
Sergey Kolekonovba203982016-12-21 18:32:17 +040070 requirements = openstack_kilo_packages
Tomáš Kukrálc6a94c62017-06-19 14:44:24 +020071 } else if (version == 'mitaka') {
Sergey Kolekonovba203982016-12-21 18:32:17 +040072 requirements = openstack_kilo_packages
Tomáš Kukrál381a8c92017-06-21 09:01:52 +020073 } else {
Sergey Kolekonovba203982016-12-21 18:32:17 +040074 requirements = openstack_latest_packages
75 }
Tomáš Kukrálbee0b992017-08-10 16:50:40 +020076 python.setupVirtualenv(path, 'python2', requirements, null, true)
Sergey Kolekonovba203982016-12-21 18:32:17 +040077}
78
79/**
80 * create connection to OpenStack API endpoint
81 *
Jakub Josef6c963762018-01-18 16:02:22 +010082 * @param path Path to created venv
Sergey Kolekonovba203982016-12-21 18:32:17 +040083 * @param url OpenStack API endpoint address
84 * @param credentialsId Credentials to the OpenStack API
85 * @param project OpenStack project to connect to
86 */
Jakub Josef6c963762018-01-18 16:02:22 +010087def createOpenstackEnv(path, url, credentialsId, project, project_domain="default",
Tomáš Kukrál381a8c92017-06-21 09:01:52 +020088 project_id="", user_domain="default", api_ver="2", cacert="/etc/ssl/certs/ca-certificates.crt") {
iberezovskiyd4240b52017-02-20 17:18:28 +040089 def common = new com.mirantis.mk.Common()
Jakub Josef6c963762018-01-18 16:02:22 +010090 rcFile = "${path}/keystonerc"
Sergey Kolekonovba203982016-12-21 18:32:17 +040091 creds = common.getPasswordCredentials(credentialsId)
Alexander Tivelkovf89a1882017-01-11 13:29:35 +030092 rc = """set +x
93export OS_USERNAME=${creds.username}
Ales Komarek0e558ee2016-12-23 13:02:55 +010094export OS_PASSWORD=${creds.password.toString()}
95export OS_TENANT_NAME=${project}
96export OS_AUTH_URL=${url}
97export OS_AUTH_STRATEGY=keystone
kairat_kushaev0a26bf72017-05-18 13:20:09 +040098export OS_PROJECT_NAME=${project}
Jakub Josefbd927322017-05-30 13:20:27 +000099export OS_PROJECT_ID=${project_id}
kairat_kushaev0a26bf72017-05-18 13:20:09 +0400100export OS_PROJECT_DOMAIN_ID=${project_domain}
Jakub Josefbd927322017-05-30 13:20:27 +0000101export OS_USER_DOMAIN_NAME=${user_domain}
Kirill Mashchenko234708f2017-07-20 17:00:01 +0300102export OS_IDENTITY_API_VERSION=${api_ver}
Tomáš Kukrál381a8c92017-06-21 09:01:52 +0200103export OS_CACERT=${cacert}
Alexander Tivelkovf89a1882017-01-11 13:29:35 +0300104set -x
Ales Komarek0e558ee2016-12-23 13:02:55 +0100105"""
106 writeFile file: rcFile, text: rc
107 return rcFile
Sergey Kolekonovba203982016-12-21 18:32:17 +0400108}
109
110/**
111 * Run command with OpenStack env params and optional python env
112 *
113 * @param cmd Command to be executed
114 * @param env Environmental parameters with endpoint credentials
115 * @param path Optional path to virtualenv with specific clients
116 */
117def runOpenstackCommand(cmd, venv, path = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400118 def python = new com.mirantis.mk.Python()
Sergey Kolekonovba203982016-12-21 18:32:17 +0400119 openstackCmd = ". ${venv}; ${cmd}"
120 if (path) {
121 output = python.runVirtualenvCommand(path, openstackCmd)
122 }
123 else {
124 echo("[Command]: ${openstackCmd}")
125 output = sh (
126 script: openstackCmd,
127 returnStdout: true
128 ).trim()
129 }
130 return output
131}
132
133/**
134 * Get OpenStack Keystone token for current credentials
135 *
136 * @param env Connection parameters for OpenStack API endpoint
137 * @param path Optional path to the custom virtualenv
138 */
139def getKeystoneToken(client, path = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400140 def python = new com.mirantis.mk.Python()
Jakub Josefbd927322017-05-30 13:20:27 +0000141 cmd = "openstack token issue"
Sergey Kolekonovba203982016-12-21 18:32:17 +0400142 outputTable = runOpenstackCommand(cmd, client, path)
Ales Komareke11e8792016-12-28 09:42:25 +0100143 output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400144 return output
145}
146
147/**
Ales Komarek51b7b152017-06-27 11:14:50 +0200148 * Create OpenStack environment file
Sergey Kolekonovba203982016-12-21 18:32:17 +0400149 *
150 * @param env Connection parameters for OpenStack API endpoint
151 * @param path Optional path to the custom virtualenv
152 */
153def createHeatEnv(file, environment = [], original_file = null) {
154 if (original_file) {
155 envString = readFile file: original_file
Tomáš Kukrál03029442017-02-21 17:14:29 +0100156 } else {
Sergey Kolekonovba203982016-12-21 18:32:17 +0400157 envString = "parameters:\n"
158 }
Tomáš Kukrál03029442017-02-21 17:14:29 +0100159
Tomáš Kukrálc3964e52017-02-22 14:07:37 +0100160 p = entries(environment)
Tomáš Kukrálb1fe9642017-02-22 11:21:17 +0100161 for (int i = 0; i < p.size(); i++) {
162 envString = "${envString} ${p.get(i)[0]}: ${p.get(i)[1]}\n"
Sergey Kolekonovba203982016-12-21 18:32:17 +0400163 }
Tomáš Kukrál03029442017-02-21 17:14:29 +0100164
Tomáš Kukrále19ddea2017-02-21 11:09:40 +0100165 echo("writing to env file:\n${envString}")
Sergey Kolekonovba203982016-12-21 18:32:17 +0400166 writeFile file: file, text: envString
167}
168
169/**
Vasyl Saienko0adc34b2019-01-23 15:52:37 +0200170 * Create new OpenStack Heat stack. Will wait for action to be complited in
171 * specified amount of time (by default 120min)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400172 *
173 * @param env Connection parameters for OpenStack API endpoint
174 * @param template HOT template for the new Heat stack
175 * @param environment Environmentale parameters of the new Heat stack
176 * @param name Name of the new Heat stack
177 * @param path Optional path to the custom virtualenv
Vasyl Saienko0adc34b2019-01-23 15:52:37 +0200178 * @param timeout Optional number in minutes to wait for stack action is applied.
Sergey Kolekonovba203982016-12-21 18:32:17 +0400179 */
Vasyl Saienko0adc34b2019-01-23 15:52:37 +0200180def createHeatStack(client, name, template, params = [], environment = null, path = null, action="create", timeout=120) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400181 def python = new com.mirantis.mk.Python()
Jakub Josef0a898762017-08-11 16:27:44 +0200182 def templateFile = "${env.WORKSPACE}/template/template/${template}.hot"
183 def envFile
184 def envSource
Sergey Kolekonovba203982016-12-21 18:32:17 +0400185 if (environment) {
Tomáš Kukrála1152742017-08-22 16:21:50 +0200186 envFile = "${env.WORKSPACE}/template/env/${name}.env"
187 if (environment.contains("/")) {
188 //init() returns all elements but the last in a collection.
189 def envPath = environment.tokenize("/").init().join("/")
190 if (envPath) {
191 envFile = "${env.WORKSPACE}/template/env/${envPath}/${name}.env"
192 }
Ales Komarek51b7b152017-06-27 11:14:50 +0200193 }
Tomáš Kukrála1152742017-08-22 16:21:50 +0200194 envSource = "${env.WORKSPACE}/template/env/${environment}.env"
Sergey Kolekonovba203982016-12-21 18:32:17 +0400195 createHeatEnv(envFile, params, envSource)
Jakub Josef9a59aeb2017-08-11 15:50:20 +0200196 } else {
Sergey Kolekonovba203982016-12-21 18:32:17 +0400197 envFile = "${env.WORKSPACE}/template/${name}.env"
198 createHeatEnv(envFile, params)
199 }
Tomáš Kukrála1152742017-08-22 16:21:50 +0200200
Mykyta Karpincf44f812017-08-28 14:45:21 +0300201 def cmd
Vasyl Saienkob91df802019-01-23 17:22:57 +0200202 def cmd_args = "-t ${templateFile} -e ${envFile} --timeout ${timeout} --wait ${name}"
Mykyta Karpincf44f812017-08-28 14:45:21 +0300203
Tomáš Kukrála1152742017-08-22 16:21:50 +0200204 if (action == "create") {
Vasyl Saienko0adc34b2019-01-23 15:52:37 +0200205 cmd = "openstack stack create ${cmd_args}"
Tomáš Kukrála1152742017-08-22 16:21:50 +0200206 } else {
Vasyl Saienko0adc34b2019-01-23 15:52:37 +0200207 cmd = "openstack stack update ${cmd_args}"
Tomáš Kukrála1152742017-08-22 16:21:50 +0200208 }
209
Sergey Kolekonovba203982016-12-21 18:32:17 +0400210 dir("${env.WORKSPACE}/template/template") {
Vasyl Saienkod4254192019-01-23 18:02:01 +0200211 def out = runOpenstackCommand(cmd, client, path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400212 }
Sergey Kolekonovba203982016-12-21 18:32:17 +0400213}
214
215/**
Jakub Josefdb4baf22017-05-10 15:16:09 +0200216 * Returns list of stacks for stack name filter
217 *
218 * @param client Connection parameters for OpenStack API endpoint
219 * @param filter Stack name filter
220 * @param path Optional path to the custom virtualenv
221 */
222def getStacksForNameContains(client, filter, path = null){
Jakub Josef6465fca2017-05-10 16:09:20 +0200223 cmd = 'heat stack-list | awk \'NR>3 {print $4}\' | sed \'$ d\' | grep ' + filter + '|| true'
Jakub Josefdb4baf22017-05-10 15:16:09 +0200224 return runOpenstackCommand(cmd, client, path).trim().tokenize("\n")
225}
226
227
228/**
Jakub Josef5e238a22017-04-19 16:35:15 +0200229 * Get list of stack names with given stack status
230 *
Jakub Josefdb4baf22017-05-10 15:16:09 +0200231 * @param client Connection parameters for OpenStack API endpoint
Jakub Josef5e238a22017-04-19 16:35:15 +0200232 * @param status Stack status
233 * @param path Optional path to the custom virtualenv
234 */
235 def getStacksWithStatus(client, status, path = null) {
236 cmd = 'heat stack-list -f stack_status='+status+' | awk \'NR>3 {print $4}\' | sed \'$ d\''
237 return runOpenstackCommand(cmd, client, path).trim().tokenize("\n")
238 }
239
240/**
Sergey Kolekonovba203982016-12-21 18:32:17 +0400241 * Get life cycle status for existing OpenStack Heat stack
242 *
243 * @param env Connection parameters for OpenStack API endpoint
244 * @param name Name of the managed Heat stack instance
245 * @param path Optional path to the custom virtualenv
246 */
247def getHeatStackStatus(client, name, path = null) {
248 cmd = 'heat stack-list | awk -v stack='+name+' \'{if ($4==stack) print $6}\''
249 return runOpenstackCommand(cmd, client, path)
250}
251
252/**
253 * Get info about existing OpenStack Heat stack
254 *
255 * @param env Connection parameters for OpenStack API endpoint
256 * @param name Name of the managed Heat stack instance
257 * @param path Optional path to the custom virtualenv
258 */
259def getHeatStackInfo(env, name, path = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400260 def python = new com.mirantis.mk.Python()
Sergey Kolekonovba203982016-12-21 18:32:17 +0400261 cmd = "heat stack-show ${name}"
262 outputTable = runOpenstackCommand(cmd, env, path)
Ales Komareke11e8792016-12-28 09:42:25 +0100263 output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400264 return output
265}
266
267/**
268 * Get existing OpenStack Heat stack output parameter
269 *
270 * @param env Connection parameters for OpenStack API endpoint
271 * @param name Name of the managed Heat stack
272 * @param parameter Name of the output parameter
273 * @param path Optional path to the custom virtualenv
274 */
275def getHeatStackOutputParam(env, name, outputParam, path = null) {
Vasyl Saienkoea4b2812017-07-10 10:36:03 +0000276 cmd = "heat output-show ${name} ${outputParam}"
Sergey Kolekonovba203982016-12-21 18:32:17 +0400277 output = runOpenstackCommand(cmd, env, path)
Ales Komarekeedc2222017-01-03 10:10:03 +0100278 echo("${cmd}: ${output}")
Vasyl Saienko2a1c2de2017-07-11 11:41:53 +0300279 // NOTE(vsaienko) heatclient 1.5.1 returns output in "", while later
280 // versions returns string without "".
281 // TODO Use openstack 'stack output show' when all jobs using at least Mitaka heatclient
282 return "${output}".replaceAll('"', '')
Sergey Kolekonovba203982016-12-21 18:32:17 +0400283}
284
285/**
286 * List all resources from existing OpenStack Heat stack
287 *
288 * @param env Connection parameters for OpenStack API endpoint
289 * @param name Name of the managed Heat stack instance
290 * @param path Optional path to the custom virtualenv
Mykyta Karpin72306362018-02-08 16:40:43 +0200291 * @param depth Optional depth of stack for listing resources,
292 * 0 - do not list nested resources
Sergey Kolekonovba203982016-12-21 18:32:17 +0400293 */
Mykyta Karpin72306362018-02-08 16:40:43 +0200294def getHeatStackResources(env, name, path = null, depth = 0) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400295 def python = new com.mirantis.mk.Python()
Mykyta Karpin72306362018-02-08 16:40:43 +0200296 cmd = "heat resource-list --nested-depth ${depth} ${name}"
Sergey Kolekonovba203982016-12-21 18:32:17 +0400297 outputTable = runOpenstackCommand(cmd, env, path)
Ales Komareke11e8792016-12-28 09:42:25 +0100298 output = python.parseTextTable(outputTable, 'list', 'prettytable', path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400299 return output
300}
301
302/**
303 * Get info about resource from existing OpenStack Heat stack
304 *
305 * @param env Connection parameters for OpenStack API endpoint
306 * @param name Name of the managed Heat stack instance
307 * @param path Optional path to the custom virtualenv
308 */
309def getHeatStackResourceInfo(env, name, resource, path = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400310 def python = new com.mirantis.mk.Python()
Sergey Kolekonovba203982016-12-21 18:32:17 +0400311 cmd = "heat resource-show ${name} ${resource}"
312 outputTable = runOpenstackCommand(cmd, env, path)
Ales Komareke11e8792016-12-28 09:42:25 +0100313 output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400314 return output
315}
316
317/**
318 * Update existing OpenStack Heat stack
319 *
320 * @param env Connection parameters for OpenStack API endpoint
321 * @param name Name of the managed Heat stack instance
322 * @param path Optional path to the custom virtualenv
323 */
324def updateHeatStack(env, name, path = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +0400325 def python = new com.mirantis.mk.Python()
Sergey Kolekonovba203982016-12-21 18:32:17 +0400326 cmd = "heat stack-update ${name}"
327 outputTable = runOpenstackCommand(cmd, env, path)
Ales Komareke11e8792016-12-28 09:42:25 +0100328 output = python.parseTextTable(outputTable, 'item', 'prettytable', path)
Sergey Kolekonovba203982016-12-21 18:32:17 +0400329 return output
330}
331
332/**
333 * Delete existing OpenStack Heat stack
334 *
335 * @param env Connection parameters for OpenStack API endpoint
336 * @param name Name of the managed Heat stack instance
337 * @param path Optional path to the custom virtualenv
338 */
339def deleteHeatStack(env, name, path = null) {
340 cmd = "heat stack-delete ${name}"
341 outputTable = runOpenstackCommand(cmd, env, path)
342}
343
344/**
Mykyta Karpin72306362018-02-08 16:40:43 +0200345 * Return hashmap of hashes server_id:server_name of servers from OpenStack Heat stack
Sergey Kolekonovba203982016-12-21 18:32:17 +0400346 *
347 * @param env Connection parameters for OpenStack API endpoint
348 * @param name Name of the managed Heat stack instance
349 * @param path Optional path to the custom virtualenv
350 */
351def getHeatStackServers(env, name, path = null) {
Mykyta Karpin72306362018-02-08 16:40:43 +0200352 // set depth to 1000 to ensure all nested resources are shown
353 resources = getHeatStackResources(env, name, path, 1000)
354 servers = [:]
Sergey Kolekonovba203982016-12-21 18:32:17 +0400355 for (resource in resources) {
356 if (resource.resource_type == 'OS::Nova::Server') {
Mykyta Karpin67978112018-02-22 11:16:45 +0200357 server = getHeatStackResourceInfo(env, resource.stack_name, resource.resource_name, path)
Mykyta Karpin72306362018-02-08 16:40:43 +0200358 servers[server.attributes.id] = server.attributes.name
Sergey Kolekonovba203982016-12-21 18:32:17 +0400359 }
360 }
361 echo("[Stack ${name}] Servers: ${servers}")
362 return servers
363}
Jiri Broulikf8f96942018-02-15 10:03:42 +0100364
365/**
Mykyta Karpin8306a9d2018-07-27 11:34:10 +0300366 * Delete nova key pair
367 *
368 * @param env Connection parameters for OpenStack API endpoint
369 * @param name Name of the key pair to delete
370 * @param path Optional path to the custom virtualenv
371 */
372def deleteKeyPair(env, name, path = null) {
373 def common = new com.mirantis.mk.Common()
374 common.infoMsg("Removing key pair ${name}")
375 def cmd = "openstack keypair delete ${name}"
376 runOpenstackCommand(cmd, env, path)
377}
378
379/**
380 * Get nova key pair
381 *
382 * @param env Connection parameters for OpenStack API endpoint
383 * @param name Name of the key pair to show
384 * @param path Optional path to the custom virtualenv
385 */
386
387def getKeyPair(env, name, path = null) {
388 def common = new com.mirantis.mk.Common()
389 def cmd = "openstack keypair show ${name}"
390 def outputTable
391 try {
392 outputTable = runOpenstackCommand(cmd, env, path)
393 } catch (Exception e) {
394 common.infoMsg("Key pair ${name} not found")
395 }
396 return outputTable
397}
398
399/**
Jiri Broulikf8f96942018-02-15 10:03:42 +0100400 * Stops all services that contain specific string (for example nova,heat, etc.)
401 * @param env Salt Connection object or pepperEnv
402 * @param probe single node on which to list service names
403 * @param target all targeted nodes
404 * @param services lists of type of services to be stopped
Jiri Broulikf6daac62018-03-08 13:17:53 +0100405 * @param confirm enable/disable manual service stop confirmation
Jiri Broulikf8f96942018-02-15 10:03:42 +0100406 * @return output of salt commands
407 */
Jiri Broulik27e83052018-03-06 11:37:29 +0100408def stopServices(env, probe, target, services=[], confirm=false) {
Jiri Broulikf8f96942018-02-15 10:03:42 +0100409 def salt = new com.mirantis.mk.Salt()
Jiri Broulikf6daac62018-03-08 13:17:53 +0100410 def common = new com.mirantis.mk.Common()
Jiri Broulikf8f96942018-02-15 10:03:42 +0100411 for (s in services) {
Dmitry Ukovd72cd2a2018-09-04 17:31:46 +0400412 def outputServicesStr = salt.getReturnValues(salt.cmdRun(env, probe, "service --status-all | grep ${s} | awk \'{print \$4}\'"))
Jiri Broulikf6daac62018-03-08 13:17:53 +0100413 def servicesList = outputServicesStr.tokenize("\n").init()
Jiri Broulik27e83052018-03-06 11:37:29 +0100414 if (confirm) {
Jiri Broulikf6daac62018-03-08 13:17:53 +0100415 if (servicesList) {
416 try {
417 input message: "Click PROCEED to stop ${servicesList}. Otherwise click ABORT to skip stopping them."
418 for (name in servicesList) {
419 if (!name.contains('Salt command')) {
Dmitry Ukovd72cd2a2018-09-04 17:31:46 +0400420 salt.runSaltProcessStep(env, target, 'service.stop', ["${name}"])
Jiri Broulikf6daac62018-03-08 13:17:53 +0100421 }
422 }
423 } catch (Exception er) {
424 common.infoMsg("skipping stopping ${servicesList} services")
425 }
426 }
427 } else {
428 if (servicesList) {
Jiri Broulik27e83052018-03-06 11:37:29 +0100429 for (name in servicesList) {
430 if (!name.contains('Salt command')) {
Dmitry Ukovd72cd2a2018-09-04 17:31:46 +0400431 salt.runSaltProcessStep(env, target, 'service.stop', ["${name}"])
Jiri Broulik27e83052018-03-06 11:37:29 +0100432 }
433 }
Jiri Broulikf8f96942018-02-15 10:03:42 +0100434 }
435 }
436 }
437}
438
439/**
Vasyl Saienko4129e102018-09-03 10:15:52 +0300440 * Return intersection of globally installed services and those are
441 * defined on specific target according to theirs priorities.
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200442 * By default services are added to the result list only if
443 * <service>.upgrade.enabled pillar is set to "True". However if it
444 * is needed to obtain list of upgrade services regardless of
445 * <service>.upgrade.enabled pillar value it is needed to set
446 * "upgrade_condition" param to "False".
Vasyl Saienko4129e102018-09-03 10:15:52 +0300447 *
448 * @param env Salt Connection object or env
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200449 * @param target The target node to get list of apps for
450 * @param upgrade_condition Whether to take "upgrade:enabled"
451 * service pillar into consideration
452 * when obtaining list of upgrade services
Vasyl Saienko4129e102018-09-03 10:15:52 +0300453**/
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200454def getOpenStackUpgradeServices(env, target, upgrade_condition=true){
Vasyl Saienko4129e102018-09-03 10:15:52 +0300455 def salt = new com.mirantis.mk.Salt()
456 def common = new com.mirantis.mk.Common()
457
458 def global_apps = salt.getConfig(env, 'I@salt:master:enabled:true', 'orchestration.upgrade.applications')
459 def node_apps = salt.getPillar(env, target, '__reclass__:applications')['return'][0].values()[0]
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200460 if (upgrade_condition) {
461 node_pillar = salt.getPillar(env, target)
462 }
Vasyl Saienko4129e102018-09-03 10:15:52 +0300463 def node_sorted_apps = []
464 if ( !global_apps['return'][0].values()[0].isEmpty() ) {
465 Map<String,Integer> _sorted_apps = [:]
466 for (k in global_apps['return'][0].values()[0].keySet()) {
467 if (k in node_apps) {
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200468 if (upgrade_condition) {
469 if (node_pillar['return'][0].values()[k]['upgrade']['enabled'][0] != null) {
470 if (node_pillar['return'][0].values()[k]['upgrade']['enabled'][0].toBoolean()) {
471 _sorted_apps[k] = global_apps['return'][0].values()[0][k].values()[0].toInteger()
472 }
Oleksii Grudev3116a732019-02-14 18:16:05 +0200473 }
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200474 } else {
475 _sorted_apps[k] = global_apps['return'][0].values()[0][k].values()[0].toInteger()
Oleksii Grudev3116a732019-02-14 18:16:05 +0200476 }
Vasyl Saienko4129e102018-09-03 10:15:52 +0300477 }
478 }
479 node_sorted_apps = common.SortMapByValueAsc(_sorted_apps).keySet()
480 common.infoMsg("Applications are placed in following order:"+node_sorted_apps)
481 } else {
482 common.errorMsg("No applications found.")
483 }
484
485 return node_sorted_apps
486}
487
Vasyl Saienko4129e102018-09-03 10:15:52 +0300488/**
489 * Run specified upgrade phase for all services on given node.
490 *
491 * @param env Salt Connection object or env
492 * @param target The target node to run states on.
493 * @param phase The phase name to run.
494**/
495def runOpenStackUpgradePhase(env, target, phase){
496 def salt = new com.mirantis.mk.Salt()
497 def common = new com.mirantis.mk.Common()
498
499 services = getOpenStackUpgradeServices(env, target)
500 def st
501
502 for (service in services){
503 st = "${service}.upgrade.${phase}".trim()
504 common.infoMsg("Running ${phase} for service ${st} on ${target}")
505 salt.enforceState(env, target, st)
506 }
507}
508
509
510/**
511 * Run OpenStack states on specified node.
512 *
513 * @param env Salt Connection object or env
514 * @param target The target node to run states on.
515**/
516def applyOpenstackAppsStates(env, target){
517 def salt = new com.mirantis.mk.Salt()
518 def common = new com.mirantis.mk.Common()
519
520 services = getOpenStackUpgradeServices(env, target)
521 def st
522
523 for (service in services){
524 st = "${service}".trim()
525 common.infoMsg("Running ${st} on ${target}")
526 salt.enforceState(env, target, st)
527 }
528}
529
Martin Polreich232ad902019-01-21 14:31:00 +0100530def verifyGaleraStatus(env, slave=false, checkTimeSync=false) {
Martin Polreich65864b02018-12-05 10:42:50 +0100531 def common = new com.mirantis.mk.Common()
Martin Polreich8f0f3ac2019-02-15 10:03:33 +0100532 def galera = new com.mirantis.mk.Galera()
533 common.warningMsg("verifyGaleraStatus method was moved to Galera class. Please change your calls accordingly.")
534 return galera.verifyGaleraStatus(env, slave, checkTimeSync)
Martin Polreich65864b02018-12-05 10:42:50 +0100535}
536
Martin Polreich9a5d6682018-12-21 16:42:06 +0100537def validateAndPrintGaleraStatusReport(env, out, minion) {
Martin Polreich65864b02018-12-05 10:42:50 +0100538 def common = new com.mirantis.mk.Common()
Martin Polreich8f0f3ac2019-02-15 10:03:33 +0100539 def galera = new com.mirantis.mk.Galera()
540 common.warningMsg("validateAndPrintGaleraStatusReport method was moved to Galera class. Please change your calls accordingly.")
541 return galera.validateAndPrintGaleraStatusReport(env, out, minion)
Martin Polreich65864b02018-12-05 10:42:50 +0100542}
543
Martin Polreich9a5d6682018-12-21 16:42:06 +0100544def getGaleraLastShutdownNode(env) {
Martin Polreich9a5d6682018-12-21 16:42:06 +0100545 def common = new com.mirantis.mk.Common()
Martin Polreich8f0f3ac2019-02-15 10:03:33 +0100546 def galera = new com.mirantis.mk.Galera()
547 common.warningMsg("getGaleraLastShutdownNode method was moved to Galera class. Please change your calls accordingly.")
548 return galera.getGaleraLastShutdownNode(env)
Martin Polreich9a5d6682018-12-21 16:42:06 +0100549}
550
Ivan Berezovskiy004cac22019-02-01 17:03:28 +0400551def restoreGaleraDb(env) {
Jiri Broulikf8f96942018-02-15 10:03:42 +0100552 def common = new com.mirantis.mk.Common()
Martin Polreich8f0f3ac2019-02-15 10:03:33 +0100553 def galera = new com.mirantis.mk.Galera()
554 common.warningMsg("restoreGaleraDb method was moved to Galera class. Please change your calls accordingly.")
555 return galera.restoreGaleraDb(env)
Oleksii Grudev3aaadc22019-03-14 10:54:58 +0200556}