blob: 4278be60ea01c86cb7904561381fb17656f7c4bd [file] [log] [blame]
Jakub Josef79ecec32017-02-17 14:36:28 +01001package com.mirantis.mk
2
Jakub Josefbceaa322017-06-13 18:28:27 +02003import com.cloudbees.groovy.cps.NonCPS
Jakub Josefb77c0812017-03-27 14:11:01 +02004import java.util.stream.Collectors
Jakub Josef79ecec32017-02-17 14:36:28 +01005/**
6 * Salt functions
7 *
8*/
9
10/**
11 * Salt connection and context parameters
12 *
13 * @param url Salt API server URL
14 * @param credentialsID ID of credentials store entry
15 */
16def connection(url, credentialsId = "salt") {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +010017 def common = new com.mirantis.mk.Common()
Jakub Josef79ecec32017-02-17 14:36:28 +010018 params = [
19 "url": url,
20 "credentialsId": credentialsId,
21 "authToken": null,
22 "creds": common.getCredentials(credentialsId)
23 ]
24 params["authToken"] = saltLogin(params)
Jakub Josef79ecec32017-02-17 14:36:28 +010025 return params
26}
27
28/**
29 * Login to Salt API, return auth token
30 *
31 * @param master Salt connection object
32 */
33def saltLogin(master) {
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010034 def http = new com.mirantis.mk.Http()
Jakub Josef79ecec32017-02-17 14:36:28 +010035 data = [
36 'username': master.creds.username,
37 'password': master.creds.password.toString(),
38 'eauth': 'pam'
39 ]
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010040 authToken = http.restGet(master, '/login', data)['return'][0]['token']
Jakub Josef79ecec32017-02-17 14:36:28 +010041 return authToken
42}
43
44/**
chnydaa0dbb252017-10-05 10:46:09 +020045 * Run action using Salt API (using plain HTTP request from Jenkins master) or Pepper (from slave shell)
Jakub Josef79ecec32017-02-17 14:36:28 +010046 *
chnydaa0dbb252017-10-05 10:46:09 +020047 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) (determines if command will be sent with Pepper of Salt API )
Jakub Josef79ecec32017-02-17 14:36:28 +010048 * @param client Client type
49 * @param target Target specification, eg. for compound matches by Pillar
50 * data: ['expression': 'I@openssh:server', 'type': 'compound'])
51 * @param function Function to execute (eg. "state.sls")
Jakub Josef2f25cf22017-03-28 13:34:57 +020052 * @param batch Batch param to salt (integer or string with percents)
Jakub Josef79ecec32017-02-17 14:36:28 +010053 * @param args Additional arguments to function
54 * @param kwargs Additional key-value arguments to function
Jiri Broulik48544be2017-06-14 18:33:54 +020055 * @param timeout Additional argument salt api timeout
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +030056 * @param read_timeout http session read timeout
Jakub Josef79ecec32017-02-17 14:36:28 +010057 */
58@NonCPS
chnydaa0dbb252017-10-05 10:46:09 +020059def runSaltCommand(saltId, client, target, function, batch = null, args = null, kwargs = null, timeout = -1, read_timeout = -1) {
Jakub Josef79ecec32017-02-17 14:36:28 +010060
61 data = [
62 'tgt': target.expression,
63 'fun': function,
64 'client': client,
65 'expr_form': target.type,
66 ]
Richard Felkld9476ac2018-07-12 19:01:33 +020067
68 if(batch != null){
69 batch = batch.toString()
70 if( (batch.isInteger() && batch.toInteger() > 0) || (batch.contains("%"))){
71 data['client']= "local_batch"
72 data['batch'] = batch
73 }
Jakub Josef79ecec32017-02-17 14:36:28 +010074 }
75
76 if (args) {
77 data['arg'] = args
78 }
79
80 if (kwargs) {
81 data['kwarg'] = kwargs
82 }
83
Jiri Broulik48544be2017-06-14 18:33:54 +020084 if (timeout != -1) {
85 data['timeout'] = timeout
86 }
87
chnydaa0dbb252017-10-05 10:46:09 +020088 // Command will be sent using HttpRequest
89 if (saltId instanceof HashMap && saltId.containsKey("authToken") ) {
Jakub Josef79ecec32017-02-17 14:36:28 +010090
chnydaa0dbb252017-10-05 10:46:09 +020091 def headers = [
92 'X-Auth-Token': "${saltId.authToken}"
93 ]
94
95 def http = new com.mirantis.mk.Http()
96 return http.sendHttpPostRequest("${saltId.url}/", data, headers, read_timeout)
97 } else if (saltId instanceof HashMap) {
98 throw new Exception("Invalid saltId")
99 }
100
101 // Command will be sent using Pepper
102 return runPepperCommand(data, saltId)
Jakub Josef79ecec32017-02-17 14:36:28 +0100103}
104
Jakub Josef5ade54c2017-03-10 16:14:01 +0100105/**
chnydaa0dbb252017-10-05 10:46:09 +0200106 * Return pillar for given saltId and target
107 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100108 * @param target Get pillar target
109 * @param pillar pillar name (optional)
110 * @return output of salt command
111 */
chnydaa0dbb252017-10-05 10:46:09 +0200112def getPillar(saltId, target, pillar = null) {
Tomáš Kukráld2589702017-03-10 16:30:46 +0100113 if (pillar != null) {
chnydaa0dbb252017-10-05 10:46:09 +0200114 return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'pillar.get', null, [pillar.replace('.', ':')])
Tomáš Kukráld2589702017-03-10 16:30:46 +0100115 } else {
chnydaa0dbb252017-10-05 10:46:09 +0200116 return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'pillar.data')
Ales Komareka3c7e502017-03-13 11:20:44 +0100117 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100118}
119
Jakub Josef5ade54c2017-03-10 16:14:01 +0100120/**
chnydaa0dbb252017-10-05 10:46:09 +0200121 * Return grain for given saltId and target
122 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100123 * @param target Get grain target
124 * @param grain grain name (optional)
125 * @return output of salt command
126 */
chnydaa0dbb252017-10-05 10:46:09 +0200127def getGrain(saltId, target, grain = null) {
Ales Komarekcec24d42017-03-08 10:25:45 +0100128 if(grain != null) {
chnydaa0dbb252017-10-05 10:46:09 +0200129 return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'grains.item', null, [grain])
Jakub Josef5ade54c2017-03-10 16:14:01 +0100130 } else {
chnydaa0dbb252017-10-05 10:46:09 +0200131 return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'grains.items')
Ales Komarekcec24d42017-03-08 10:25:45 +0100132 }
Ales Komarekcec24d42017-03-08 10:25:45 +0100133}
134
Jakub Josef432e9d92018-02-06 18:28:37 +0100135
Jakub Josef5ade54c2017-03-10 16:14:01 +0100136/**
chnydaa0dbb252017-10-05 10:46:09 +0200137 * Enforces state on given saltId and target
138 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100139 * @param target State enforcing target
140 * @param state Salt state
Jakub Josef432e9d92018-02-06 18:28:37 +0100141 * @param excludedStates states which will be excluded from main state (default empty string)
142 * @param output print output (optional, default true)
143 * @param failOnError throw exception on salt state result:false (optional, default true)
144 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
145 * @param optional Optional flag (if true pipeline will continue even if no minions for target found)
146 * @param read_timeout http session read timeout (optional, default -1 - disabled)
147 * @param retries Retry count for salt state. (optional, default -1 - no retries)
148 * @param queue salt queue parameter for state.sls calls (optional, default true) - CANNOT BE USED WITH BATCH
149 * @param saltArgs additional salt args eq. ["runas=aptly"]
150 * @return output of salt command
151 */
152def enforceStateWithExclude(saltId, target, state, excludedStates = "", output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1, queue=true, saltArgs=[]) {
153 saltArgs << "exclude=${excludedStates}"
154 return enforceState(saltId, target, state, output, failOnError, batch, optional, read_timeout, retries, queue, saltArgs)
155}
156
157/* Enforces state on given saltId and target
158 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
159 * @param target State enforcing target
160 * @param state Salt state
Jakub Josef5ade54c2017-03-10 16:14:01 +0100161 * @param output print output (optional, default true)
162 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200163 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef432e9d92018-02-06 18:28:37 +0100164 * @param optional Optional flag (if true pipeline will continue even if no minions for target found)
Petr Michalecde0ff322017-10-04 09:32:14 +0200165 * @param read_timeout http session read timeout (optional, default -1 - disabled)
166 * @param retries Retry count for salt state. (optional, default -1 - no retries)
167 * @param queue salt queue parameter for state.sls calls (optional, default true) - CANNOT BE USED WITH BATCH
Jakub Josef432e9d92018-02-06 18:28:37 +0100168 * @param saltArgs additional salt args eq. ["runas=aptly", exclude="opencontrail.database"]
Vasyl Saienko6a396212018-06-08 09:20:08 +0300169 * @param minionRestartWaitTimeout specifies timeout that we should wait after minion restart.
Jakub Josef5ade54c2017-03-10 16:14:01 +0100170 * @return output of salt command
171 */
Vasyl Saienko6a396212018-06-08 09:20:08 +0300172def enforceState(saltId, target, state, output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1, queue=true, saltArgs = [], minionRestartWaitTimeout=10) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100173 def common = new com.mirantis.mk.Common()
Jakub Josef432e9d92018-02-06 18:28:37 +0100174 // add state to salt args
Jakub Josef79ecec32017-02-17 14:36:28 +0100175 if (state instanceof String) {
Jakub Josef432e9d92018-02-06 18:28:37 +0100176 saltArgs << state
Jakub Josef79ecec32017-02-17 14:36:28 +0100177 } else {
Jakub Josef432e9d92018-02-06 18:28:37 +0100178 saltArgs << state.join(',')
Jakub Josef79ecec32017-02-17 14:36:28 +0100179 }
180
Jakub Josef84f01682018-02-07 14:26:19 +0100181 common.infoMsg("Running state ${state} on ${target}")
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300182 def out
Petr Michalecde0ff322017-10-04 09:32:14 +0200183 def kwargs = [:]
184
185 if (queue && batch == null) {
186 kwargs["queue"] = true
187 }
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300188
chnydaa0dbb252017-10-05 10:46:09 +0200189 if (optional == false || testTarget(saltId, target)){
Richard Felkl03203d62017-11-01 17:57:32 +0100190 if (retries > 0){
Jakub Josef962ba912018-04-04 17:39:19 +0200191 def retriesCounter = 0
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300192 retry(retries){
Jakub Josef962ba912018-04-04 17:39:19 +0200193 retriesCounter++
Jakub Josef432e9d92018-02-06 18:28:37 +0100194 // we have to reverse order in saltArgs because salt state have to be first
195 out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, saltArgs.reverse(), kwargs, -1, read_timeout)
196 // failOnError should be passed as true because we need to throw exception for retry block handler
Jakub Josef962ba912018-04-04 17:39:19 +0200197 checkResult(out, true, output, true, retriesCounter < retries) //disable ask on error for every interation except last one
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300198 }
Petr Michalecde0ff322017-10-04 09:32:14 +0200199 } else {
Jakub Josef432e9d92018-02-06 18:28:37 +0100200 // we have to reverse order in saltArgs because salt state have to be first
201 out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, saltArgs.reverse(), kwargs, -1, read_timeout)
Richard Felkl03203d62017-11-01 17:57:32 +0100202 checkResult(out, failOnError, output)
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300203 }
Vasyl Saienko6a396212018-06-08 09:20:08 +0300204 waitForMinion(out, minionRestartWaitTimeout)
Martin Polreich1c77afa2017-07-18 11:27:02 +0200205 return out
Martin Polreich1c77afa2017-07-18 11:27:02 +0200206 } else {
207 common.infoMsg("No Minions matched the target given, but 'optional' param was set to true - Pipeline continues. ")
208 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100209}
210
Jakub Josef5ade54c2017-03-10 16:14:01 +0100211/**
212 * Run command on salt minion (salt cmd.run wrapper)
chnydaa0dbb252017-10-05 10:46:09 +0200213 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100214 * @param target Get pillar target
215 * @param cmd command
Jakub Josef053df392017-05-03 15:51:05 +0200216 * @param checkResponse test command success execution (default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200217 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200218 * @param output do you want to print output
chnyda205a92b2018-01-11 17:07:32 +0100219 * @param saltArgs additional salt args eq. ["runas=aptly"]
Jakub Josef5ade54c2017-03-10 16:14:01 +0100220 * @return output of salt command
221 */
chnyda205a92b2018-01-11 17:07:32 +0100222def cmdRun(saltId, target, cmd, checkResponse = true, batch=null, output = true, saltArgs = []) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100223 def common = new com.mirantis.mk.Common()
Jakub Josef053df392017-05-03 15:51:05 +0200224 def originalCmd = cmd
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100225 common.infoMsg("Running command ${cmd} on ${target}")
Jakub Josef053df392017-05-03 15:51:05 +0200226 if (checkResponse) {
227 cmd = cmd + " && echo Salt command execution success"
228 }
chnyda205a92b2018-01-11 17:07:32 +0100229
Jakub Josef432e9d92018-02-06 18:28:37 +0100230 // add cmd name to salt args list
chnyda205a92b2018-01-11 17:07:32 +0100231 saltArgs << cmd
232
233 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.run', batch, saltArgs.reverse())
Jakub Josef053df392017-05-03 15:51:05 +0200234 if (checkResponse) {
235 // iterate over all affected nodes and check success return code
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200236 if (out["return"]){
237 for(int i=0;i<out["return"].size();i++){
238 def node = out["return"][i];
Jakub Josef053df392017-05-03 15:51:05 +0200239 for(int j=0;j<node.size();j++){
240 def nodeKey = node.keySet()[j]
241 if (!node[nodeKey].contains("Salt command execution success")) {
242 throw new Exception("Execution of cmd ${originalCmd} failed. Server returns: ${node[nodeKey]}")
243 }
244 }
245 }
246 }else{
247 throw new Exception("Salt Api response doesn't have return param!")
248 }
249 }
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200250 if (output == true) {
251 printSaltCommandResult(out)
252 }
253 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100254}
255
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200256/**
Jiri Broulik71512bc2017-08-04 10:00:18 +0200257 * Checks if salt minion is in a list of salt master's accepted keys
chnydaa0dbb252017-10-05 10:46:09 +0200258 * @usage minionPresent(saltId, 'I@salt:master', 'ntw', true, null, true, 200, 3)
259 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200260 * @param target Get pillar target
261 * @param minion_name unique identification of a minion in salt-key command output
262 * @param waitUntilPresent return after the minion becomes present (default true)
263 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
264 * @param output print salt command (default true)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200265 * @param maxRetries finite number of iterations to check status of a command (default 200)
266 * @param answers how many minions should return (optional, default 1)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200267 * @return output of salt command
268 */
lmercl94189272018-06-01 11:03:46 +0200269def minionPresent(saltId, target, minion_name, waitUntilPresent = true, batch=null, output = true, maxRetries = 180, answers = 1) {
Jiri Broulik71512bc2017-08-04 10:00:18 +0200270 minion_name = minion_name.replace("*", "")
271 def common = new com.mirantis.mk.Common()
Dzmitry Stremkouski8a8d56b2018-05-01 12:20:04 +0200272 common.infoMsg("Looking for minion: " + minion_name)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200273 def cmd = 'salt-key | grep ' + minion_name
274 if (waitUntilPresent){
275 def count = 0
276 while(count < maxRetries) {
Dzmitry Stremkouski5425d232018-06-07 00:46:00 +0200277 try {
278 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
279 if (output) {
280 printSaltCommandResult(out)
281 }
282 def valueMap = out["return"][0]
283 def result = valueMap.get(valueMap.keySet()[0])
284 def resultsArray = result.tokenize("\n")
285 def size = resultsArray.size()
286 if (size >= answers) {
287 return out
288 }
289 count++
290 sleep(time: 1000, unit: 'MILLISECONDS')
291 common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state")
292 } catch (Exception er) {
293 common.infoMsg('[WARNING]: runSaltCommand command read timeout within 5 seconds. You have very slow or broken environment')
294 }
295 }
296 } else {
297 try {
chnydaa0dbb252017-10-05 10:46:09 +0200298 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200299 if (output) {
300 printSaltCommandResult(out)
301 }
Dzmitry Stremkouski5425d232018-06-07 00:46:00 +0200302 return out
303 } catch (Exception er) {
304 common.infoMsg('[WARNING]: runSaltCommand command read timeout within 5 seconds. You have very slow or broken environment')
Jiri Broulik71512bc2017-08-04 10:00:18 +0200305 }
Jiri Broulik71512bc2017-08-04 10:00:18 +0200306 }
307 // otherwise throw exception
308 common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.")
309 throw new Exception("${cmd} signals failure of status check!")
310}
311
312/**
Dzmitry Stremkouski8a8d56b2018-05-01 12:20:04 +0200313 * Checks if salt minions are in a list of salt master's accepted keys by matching compound
314 * @usage minionsPresent(saltId, 'I@salt:master', 'I@salt:minion', true, null, true, 200, 3)
Jiri Broulikf8f96942018-02-15 10:03:42 +0100315 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
316 * @param target Performs tests on this target node
317 * @param target_minions all targeted minions to test (for ex. I@salt:minion)
318 * @param waitUntilPresent return after the minion becomes present (default true)
319 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
320 * @param output print salt command (default true)
321 * @param maxRetries finite number of iterations to check status of a command (default 200)
322 * @param answers how many minions should return (optional, default 1)
323 * @return output of salt command
324 */
325def minionsPresent(saltId, target = 'I@salt:master', target_minions = '', waitUntilPresent = true, batch=null, output = true, maxRetries = 200, answers = 1) {
Dzmitry Stremkouski8a8d56b2018-05-01 12:20:04 +0200326 def target_hosts = getMinionsSorted(saltId, target_minions)
Jiri Broulikf8f96942018-02-15 10:03:42 +0100327 for (t in target_hosts) {
Dzmitry Stremkouski8a8d56b2018-05-01 12:20:04 +0200328 def tgt = stripDomainName(t)
329 minionPresent(saltId, target, tgt, waitUntilPresent, batch, output, maxRetries, answers)
330 }
331}
332
333/**
334 * Checks if salt minions are in a list of salt master's accepted keys by matching a list
335 * @usage minionsPresentFromList(saltId, 'I@salt:master', ["cfg01.example.com", "bmk01.example.com"], true, null, true, 200, 3)
336 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
337 * @param target Performs tests on this target node
338 * @param target_minions list to test (for ex. ["cfg01.example.com", "bmk01.example.com"])
339 * @param waitUntilPresent return after the minion becomes present (default true)
340 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
341 * @param output print salt command (default true)
342 * @param maxRetries finite number of iterations to check status of a command (default 200)
343 * @param answers how many minions should return (optional, default 1)
344 * @return output of salt command
345 */
346def minionsPresentFromList(saltId, target = 'I@salt:master', target_minions = [], waitUntilPresent = true, batch=null, output = true, maxRetries = 200, answers = 1) {
347 def common = new com.mirantis.mk.Common()
348 for (tgt in target_minions) {
349 common.infoMsg("Checking if minion " + tgt + " is present")
350 minionPresent(saltId, target, tgt, waitUntilPresent, batch, output, maxRetries, answers)
Jiri Broulikf8f96942018-02-15 10:03:42 +0100351 }
352}
353
354/**
Jiri Broulik71512bc2017-08-04 10:00:18 +0200355 * You can call this function when salt-master already contains salt keys of the target_nodes
chnydaa0dbb252017-10-05 10:46:09 +0200356 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200357 * @param target Should always be salt-master
358 * @param target_nodes unique identification of a minion or group of salt minions
359 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
360 * @param wait timeout for the salt command if minions do not return (default 10)
361 * @param maxRetries finite number of iterations to check status of a command (default 200)
362 * @return output of salt command
363 */
chnydaa0dbb252017-10-05 10:46:09 +0200364def minionsReachable(saltId, target, target_nodes, batch=null, wait = 10, maxRetries = 200) {
Jiri Broulik71512bc2017-08-04 10:00:18 +0200365 def common = new com.mirantis.mk.Common()
366 def cmd = "salt -t${wait} -C '${target_nodes}' test.ping"
367 common.infoMsg("Checking if all ${target_nodes} minions are reachable")
368 def count = 0
369 while(count < maxRetries) {
370 Calendar timeout = Calendar.getInstance();
371 timeout.add(Calendar.SECOND, wait);
chnydaa0dbb252017-10-05 10:46:09 +0200372 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, wait)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200373 Calendar current = Calendar.getInstance();
374 if (current.getTime().before(timeout.getTime())) {
375 printSaltCommandResult(out)
376 return out
377 }
378 common.infoMsg("Not all of the targeted '${target_nodes}' minions returned yet. Waiting ...")
379 count++
380 sleep(time: 500, unit: 'MILLISECONDS')
381 }
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200382}
383
384/**
385 * Run command on salt minion (salt cmd.run wrapper)
chnydaa0dbb252017-10-05 10:46:09 +0200386 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200387 * @param target Get pillar target
388 * @param cmd name of a service
389 * @param correct_state string that command must contain if status is in correct state (optional, default 'running')
Jiri Broulikcf1f2332017-07-25 11:30:03 +0200390 * @param find bool value if it is suppose to find some string in the output or the cmd should return empty string (optional, default true)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200391 * @param waitUntilOk return after the minion becomes present (optional, default true)
392 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
393 * @param output print salt command (default true)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200394 * @param maxRetries finite number of iterations to check status of a command (default 200)
395 * @param answers how many minions should return (optional, default 0)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200396 * @return output of salt command
397 */
chnydaa0dbb252017-10-05 10:46:09 +0200398def commandStatus(saltId, target, cmd, correct_state='running', find = true, waitUntilOk = true, batch=null, output = true, maxRetries = 200, answers = 0) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200399 def common = new com.mirantis.mk.Common()
400 common.infoMsg("Checking if status of verification command ${cmd} on ${target} is in correct state")
401 if (waitUntilOk){
402 def count = 0
403 while(count < maxRetries) {
chnydaa0dbb252017-10-05 10:46:09 +0200404 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200405 if (output) {
406 printSaltCommandResult(out)
407 }
Jakub Josef115a78f2017-07-18 15:04:00 +0200408 def resultMap = out["return"][0]
Jiri Broulik71512bc2017-08-04 10:00:18 +0200409 def success = 0
410 if (answers == 0){
411 answers = resultMap.size()
412 }
413 for (int i=0;i<answers;i++) {
414 result = resultMap.get(resultMap.keySet()[i])
415 // if the goal is to find some string in output of the command
416 if (find) {
417 if(result == null || result instanceof Boolean || result.isEmpty()) { result='' }
418 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
419 success++
420 if (success == answers) {
421 return out
422 }
Jiri Broulikd0c27572017-07-24 20:01:10 +0200423 }
Jiri Broulik71512bc2017-08-04 10:00:18 +0200424 // else the goal is to not find any string in output of the command
425 } else {
426 if(result instanceof String && result.isEmpty()) {
427 success++
428 if (success == answers) {
429 return out
chnydaa0dbb252017-10-05 10:46:09 +0200430 }
Jiri Broulik71512bc2017-08-04 10:00:18 +0200431 }
432 }
433 }
434 count++
435 sleep(time: 500, unit: 'MILLISECONDS')
436 common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state")
437 }
438 } else {
chnydaa0dbb252017-10-05 10:46:09 +0200439 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
Jiri Broulik71512bc2017-08-04 10:00:18 +0200440 def resultMap = out["return"][0]
441 if (output) {
442 printSaltCommandResult(out)
443 }
444 for (int i=0;i<resultMap.size();i++) {
445 result = resultMap.get(resultMap.keySet()[i])
446 // if the goal is to find some string in output of the command
447 if (find) {
448 if(result == null || result instanceof Boolean || result.isEmpty()) { result='' }
449 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
Jiri Broulikd0c27572017-07-24 20:01:10 +0200450 return out
451 }
452
453 // else the goal is to not find any string in output of the command
454 } else {
455 if(result instanceof String && result.isEmpty()) {
456 return out
457 }
458 }
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200459 }
460 }
461 // otherwise throw exception
Jiri Broulikd0c27572017-07-24 20:01:10 +0200462 common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.")
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200463 throw new Exception("${cmd} signals failure of status check!")
464}
465
Jakub Josef5ade54c2017-03-10 16:14:01 +0100466/**
467 * Perform complete salt sync between master and target
chnydaa0dbb252017-10-05 10:46:09 +0200468 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100469 * @param target Get pillar target
470 * @return output of salt command
471 */
chnydaa0dbb252017-10-05 10:46:09 +0200472def syncAll(saltId, target) {
473 return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all')
Jakub Josef79ecec32017-02-17 14:36:28 +0100474}
475
Jakub Josef5ade54c2017-03-10 16:14:01 +0100476/**
Jakub Josef432e9d92018-02-06 18:28:37 +0100477 * Perform complete salt refresh between master and target
478 * Method will call saltutil.refresh_pillar, saltutil.refresh_grains and saltutil.sync_all
479 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
480 * @param target Get pillar target
481 * @return output of salt command
482 */
483def fullRefresh(saltId, target){
484 runSaltProcessStep(saltId, target, 'saltutil.refresh_pillar', [], null, true)
485 runSaltProcessStep(saltId, target, 'saltutil.refresh_grains', [], null, true)
486 runSaltProcessStep(saltId, target, 'saltutil.sync_all', [], null, true)
487}
488
489/**
490 * Enforce highstate on given targets
491 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
492 * @param target Highstate enforcing target
493 * @param excludedStates states which will be excluded from main state (default empty string)
494 * @param output print output (optional, default true)
495 * @param failOnError throw exception on salt state result:false (optional, default true)
496 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
497 * @param saltArgs additional salt args eq. ["runas=aptly", exclude="opencontrail.database"]
498 * @return output of salt command
499 */
500def enforceHighstateWithExclude(saltId, target, excludedStates = "", output = false, failOnError = true, batch = null, saltArgs = []) {
501 saltArgs << "exclude=${excludedStates}"
502 return enforceHighstate(saltId, target, output, failOnError, batch, saltArgs)
503}
504/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100505 * Enforce highstate on given targets
chnydaa0dbb252017-10-05 10:46:09 +0200506 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100507 * @param target Highstate enforcing target
508 * @param output print output (optional, default true)
509 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200510 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100511 * @return output of salt command
512 */
Jakub Josef432e9d92018-02-06 18:28:37 +0100513def enforceHighstate(saltId, target, output = false, failOnError = true, batch = null, saltArgs = []) {
Petr Jediný30be7032018-05-29 18:22:46 +0200514 def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch, saltArgs)
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000515 def common = new com.mirantis.mk.Common()
516
Marek Celoud63366112017-07-25 17:27:24 +0200517 common.infoMsg("Running state highstate on ${target}")
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000518
Jakub Josef374beb72017-04-27 15:45:09 +0200519 checkResult(out, failOnError, output)
Jakub Josef79ecec32017-02-17 14:36:28 +0100520 return out
521}
522
Jakub Josef5ade54c2017-03-10 16:14:01 +0100523/**
Ales Komarek5276ebe2017-03-16 08:46:34 +0100524 * Get running minions IDs according to the target
chnydaa0dbb252017-10-05 10:46:09 +0200525 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Ales Komarek5276ebe2017-03-16 08:46:34 +0100526 * @param target Get minions target
527 * @return list of active minions fitin
528 */
chnydaa0dbb252017-10-05 10:46:09 +0200529def getMinions(saltId, target) {
530 def minionsRaw = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'test.ping')
Ales Komarek5276ebe2017-03-16 08:46:34 +0100531 return new ArrayList<String>(minionsRaw['return'][0].keySet())
532}
533
Jiri Broulikf8f96942018-02-15 10:03:42 +0100534/**
535 * Get sorted running minions IDs according to the target
536 * @param saltId Salt Connection object or pepperEnv
537 * @param target Get minions target
538 * @return list of sorted active minions fitin
539 */
540def getMinionsSorted(saltId, target) {
541 return getMinions(saltId, target).sort()
542}
543
544/**
545 * Get first out of running minions IDs according to the target
546 * @param saltId Salt Connection object or pepperEnv
547 * @param target Get minions target
548 * @return first of active minions fitin
549 */
550def getFirstMinion(saltId, target) {
551 def minionsSorted = getMinionsSorted(saltId, target)
552 return minionsSorted[0].split("\\.")[0]
553}
554
555/**
556 * Get running salt minions IDs without it's domain name part and its numbering identifications
557 * @param saltId Salt Connection object or pepperEnv
558 * @param target Get minions target
559 * @return list of active minions fitin without it's domain name part name numbering
560 */
561def getMinionsGeneralName(saltId, target) {
562 def minionsSorted = getMinionsSorted(saltId, target)
563 return stripDomainName(minionsSorted[0]).replaceAll('\\d+$', "")
564}
565
566/**
567 * Get domain name of the env
568 * @param saltId Salt Connection object or pepperEnv
569 * @return domain name
570 */
571def getDomainName(saltId) {
572 return getReturnValues(getPillar(saltId, 'I@salt:master', '_param:cluster_domain'))
573}
574
575/**
576 * Remove domain name from Salt minion ID
577 * @param name String of Salt minion ID
578 * @return Salt minion ID without its domain name
579 */
580def stripDomainName(name) {
581 return name.split("\\.")[0]
582}
583
584/**
585 * Gets return values of a salt command
586 * @param output String of Salt minion ID
587 * @return Return values of a salt command
588 */
589def getReturnValues(output) {
590 if(output.containsKey("return") && !output.get("return").isEmpty()) {
591 return output['return'][0].values()[0]
592 }
593 def common = new com.mirantis.mk.Common()
594 common.errorMsg('output does not contain return key')
595 return ''
596}
597
598/**
599 * Get minion ID of one of KVM nodes
600 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
601 * @return Salt minion ID of one of KVM nodes in env
602 */
603def getKvmMinionId(saltId) {
604 return getReturnValues(getGrain(saltId, 'I@salt:control', 'id')).values()[0]
605}
606
607/**
608 * Get Salt minion ID of KVM node hosting 'name' VM
609 * @param saltId Salt Connection object or pepperEnv
610 * @param name Name of the VM (for ex. ctl01)
611 * @return Salt minion ID of KVM node hosting 'name' VM
612 */
Jiri Broulikd2a50552018-04-25 17:17:59 +0200613def getNodeProvider(saltId, nodeName) {
614 def salt = new com.mirantis.mk.Salt()
615 def common = new com.mirantis.mk.Common()
616 def kvms = salt.getMinions(saltId, 'I@salt:control')
617 for (kvm in kvms) {
618 try {
619 vms = salt.getReturnValues(salt.runSaltProcessStep(saltId, kvm, 'virt.list_domains', [], null, true))
620 if (vms.toString().contains(nodeName)) {
621 return kvm
622 }
623 } catch (Exception er) {
624 common.infoMsg("${nodeName} not present on ${kvm}")
625 }
626 }
Jiri Broulikf8f96942018-02-15 10:03:42 +0100627}
628
Ales Komarek5276ebe2017-03-16 08:46:34 +0100629/**
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200630 * Test if there are any minions to target
chnydaa0dbb252017-10-05 10:46:09 +0200631 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200632 * @param target Target to test
vrovachev1c4770b2017-07-05 13:25:21 +0400633 * @return bool indicating if target was succesful
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200634 */
635
chnydaa0dbb252017-10-05 10:46:09 +0200636def testTarget(saltId, target) {
637 return getMinions(saltId, target).size() > 0
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200638}
639
640/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100641 * Generates node key using key.gen_accept call
chnydaa0dbb252017-10-05 10:46:09 +0200642 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100643 * @param target Key generating target
644 * @param host Key generating host
645 * @param keysize generated key size (optional, default 4096)
646 * @return output of salt command
647 */
chnydaa0dbb252017-10-05 10:46:09 +0200648def generateNodeKey(saltId, target, host, keysize = 4096) {
649 return runSaltCommand(saltId, 'wheel', target, 'key.gen_accept', [host], ['keysize': keysize])
Jakub Josef79ecec32017-02-17 14:36:28 +0100650}
651
Jakub Josef5ade54c2017-03-10 16:14:01 +0100652/**
Jakub Josef2f25cf22017-03-28 13:34:57 +0200653 * Generates node reclass metadata
chnydaa0dbb252017-10-05 10:46:09 +0200654 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100655 * @param target Metadata generating target
656 * @param host Metadata generating host
657 * @param classes Reclass classes
658 * @param parameters Reclass parameters
659 * @return output of salt command
660 */
chnydaa0dbb252017-10-05 10:46:09 +0200661def generateNodeMetadata(saltId, target, host, classes, parameters) {
662 return runSaltCommand(saltId, 'local', target, 'reclass.node_create', [host, '_generated'], ['classes': classes, 'parameters': parameters])
Jakub Josef79ecec32017-02-17 14:36:28 +0100663}
664
Jakub Josef5ade54c2017-03-10 16:14:01 +0100665/**
666 * Run salt orchestrate on given targets
chnydaa0dbb252017-10-05 10:46:09 +0200667 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100668 * @param target Orchestration target
669 * @param orchestrate Salt orchestrate params
Dzmitry Stremkouskidd020d92018-07-22 12:01:07 +0200670 * @param kwargs Salt orchestrate params
Jakub Josef5ade54c2017-03-10 16:14:01 +0100671 * @return output of salt command
672 */
Dzmitry Stremkouskidd020d92018-07-22 12:01:07 +0200673def orchestrateSystem(saltId, target, orchestrate=[], kwargs = null) {
674 return runSaltCommand(saltId, 'runner', target, 'state.orchestrate', true, orchestrate, kwargs, -1, -1)
Jakub Josef79ecec32017-02-17 14:36:28 +0100675}
676
Jakub Josef5ade54c2017-03-10 16:14:01 +0100677/**
Dzmitry Stremkouskib5440702018-07-22 13:00:05 +0200678 * Run salt pre or post orchestrate tasks
679 *
680 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
681 * @param pillar_tree Reclass pillar that has orchestrate pillar for desired stage
682 * @param extra_tgt Extra targets for compound
683 *
684 * @return output of salt command
685 */
686def orchestratePrePost(saltId, pillar_tree, extra_tgt = '') {
687
688 def common = new com.mirantis.mk.Common()
689 def salt = new com.mirantis.mk.Salt()
690 def compound = 'I@' + pillar_tree + " " + extra_tgt
691
692 common.infoMsg("Refreshing pillars")
693 runSaltProcessStep(saltId, '*', 'saltutil.refresh_pillar', [], null, true)
694
695 common.infoMsg("Looking for orchestrate pillars")
696 if (salt.testTarget(saltId, compound)) {
697 for ( node in salt.getMinionsSorted(saltId, compound) ) {
698 def pillar = salt.getPillar(saltId, node, pillar_tree)
699 if ( !pillar['return'].isEmpty() ) {
700 for ( orch_id in pillar['return'][0].values() ) {
701 def orchestrator = orch_id.values()['orchestrator']
702 def orch_enabled = orch_id.values()['enabled']
703 if ( orch_enabled ) {
704 common.infoMsg("Orchestrating: ${orchestrator}")
705 salt.printSaltCommandResult(salt.orchestrateSystem(saltId, ['expression': node], [orchestrator]))
706 }
707 }
708 }
709 }
710 }
711}
712
713/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100714 * Run salt process step
chnydaa0dbb252017-10-05 10:46:09 +0200715 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100716 * @param tgt Salt process step target
717 * @param fun Salt process step function
718 * @param arg process step arguments (optional, default [])
Jakub Josef2f25cf22017-03-28 13:34:57 +0200719 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef432e9d92018-02-06 18:28:37 +0100720 * @param output print output (optional, default true)
Jiri Broulik48544be2017-06-14 18:33:54 +0200721 * @param timeout Additional argument salt api timeout
Jakub Josef5ade54c2017-03-10 16:14:01 +0100722 * @return output of salt command
723 */
Jakub Josef432e9d92018-02-06 18:28:37 +0100724def runSaltProcessStep(saltId, tgt, fun, arg = [], batch = null, output = true, timeout = -1, kwargs = null) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100725 def common = new com.mirantis.mk.Common()
Jiri Broulik48544be2017-06-14 18:33:54 +0200726 def salt = new com.mirantis.mk.Salt()
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100727 def out
728
Marek Celoud63366112017-07-25 17:27:24 +0200729 common.infoMsg("Running step ${fun} ${arg} on ${tgt}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100730
Filip Pytlounf0435c02017-03-02 17:48:54 +0100731 if (batch == true) {
chnydaa0dbb252017-10-05 10:46:09 +0200732 out = runSaltCommand(saltId, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg, kwargs, timeout)
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100733 } else {
chnydaa0dbb252017-10-05 10:46:09 +0200734 out = runSaltCommand(saltId, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg, kwargs, timeout)
Jakub Josef79ecec32017-02-17 14:36:28 +0100735 }
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100736
Tomáš Kukrálf5dda642017-03-02 14:22:59 +0100737 if (output == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200738 salt.printSaltCommandResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100739 }
Jiri Broulikae19c262017-05-16 19:06:52 +0200740 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100741}
742
743/**
744 * Check result for errors and throw exception if any found
745 *
746 * @param result Parsed response of Salt API
Jakub Josef8021c002017-03-27 15:41:28 +0200747 * @param failOnError Do you want to throw exception if salt-call fails (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200748 * @param printResults Do you want to print salt results (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200749 * @param printOnlyChanges If true (default), print only changed resources
Jakub Josef432e9d92018-02-06 18:28:37 +0100750 * @param disableAskOnError Flag for disabling ASK_ON_ERROR feature (optional, default false)
Jakub Josef79ecec32017-02-17 14:36:28 +0100751 */
Jakub Josef432e9d92018-02-06 18:28:37 +0100752def checkResult(result, failOnError = true, printResults = true, printOnlyChanges = true, disableAskOnError = false) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100753 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100754 if(result != null){
755 if(result['return']){
756 for (int i=0;i<result['return'].size();i++) {
757 def entry = result['return'][i]
758 if (!entry) {
759 if (failOnError) {
760 throw new Exception("Salt API returned empty response: ${result}")
761 } else {
762 common.errorMsg("Salt API returned empty response: ${result}")
Jakub Josefece32af2017-03-14 19:20:08 +0100763 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100764 }
765 for (int j=0;j<entry.size();j++) {
766 def nodeKey = entry.keySet()[j]
767 def node=entry[nodeKey]
Jakub Josefa87941c2017-04-20 17:14:58 +0200768 def outputResources = []
Jakub Josef47145942018-04-04 17:30:38 +0200769 def errorResources = []
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100770 common.infoMsg("Node ${nodeKey} changes:")
771 if(node instanceof Map || node instanceof List){
772 for (int k=0;k<node.size();k++) {
773 def resource;
774 def resKey;
775 if(node instanceof Map){
776 resKey = node.keySet()[k]
Richard Felkld9476ac2018-07-12 19:01:33 +0200777 if (resKey == "retcode")
778 continue
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100779 }else if(node instanceof List){
780 resKey = k
781 }
782 resource = node[resKey]
Jakub Josefc4c40202017-04-28 12:04:24 +0200783 // print
Jakub Josefa87941c2017-04-20 17:14:58 +0200784 if(printResults){
785 if(resource instanceof Map && resource.keySet().contains("result")){
786 //clean unnesaccary fields
787 if(resource.keySet().contains("__run_num__")){
788 resource.remove("__run_num__")
789 }
790 if(resource.keySet().contains("__id__")){
791 resource.remove("__id__")
792 }
793 if(resource.keySet().contains("pchanges")){
794 resource.remove("pchanges")
795 }
796 if(!resource["result"] || (resource["result"] instanceof String && resource["result"] != "true")){
797 if(resource["result"] != null){
Jakub Josefbceaa322017-06-13 18:28:27 +0200798 outputResources.add(String.format("Resource: %s\n\u001B[31m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200799 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200800 outputResources.add(String.format("Resource: %s\n\u001B[33m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200801 }
802 }else{
803 if(!printOnlyChanges || resource.changes.size() > 0){
Jakub Josefbceaa322017-06-13 18:28:27 +0200804 outputResources.add(String.format("Resource: %s\n\u001B[32m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200805 }
806 }
807 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200808 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200809 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100810 }
Jakub Josefc4c40202017-04-28 12:04:24 +0200811 common.debugMsg("checkResult: checking resource: ${resource}")
812 if(resource instanceof String || (resource["result"] != null && !resource["result"]) || (resource["result"] instanceof String && resource["result"] == "false")){
Jakub Josef47145942018-04-04 17:30:38 +0200813 errorResources.add(resource)
Jakub Josefc4c40202017-04-28 12:04:24 +0200814 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100815 }
Jakub Josefa87941c2017-04-20 17:14:58 +0200816 }else if(node!=null && node!=""){
Jakub Josef62f6c842017-08-04 16:36:35 +0200817 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", nodeKey, common.prettify(node)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200818 }
819 if(printResults && !outputResources.isEmpty()){
Jakub Josef47145942018-04-04 17:30:38 +0200820 println outputResources.stream().collect(Collectors.joining("\n"))
821 }
822 if(!errorResources.isEmpty()){
823 for(resource in errorResources){
824 def prettyResource = common.prettify(resource)
825 if (!disableAskOnError && env["ASK_ON_ERROR"] && env["ASK_ON_ERROR"] == "true") {
826 timeout(time:1, unit:'HOURS') {
827 input message: "False result on ${nodeKey} found, resource ${prettyResource}. \nDo you want to continue?"
828 }
829 } else {
830 def errorMsg = "Salt state on node ${nodeKey} failed. Resource: ${prettyResource}"
831 if (failOnError) {
832 throw new Exception(errorMsg)
833 } else {
834 common.errorMsg(errorMsg)
835 }
836 }
837 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100838 }
839 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100840 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100841 }else{
842 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100843 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100844 }else{
Jakub Josefa87941c2017-04-20 17:14:58 +0200845 common.errorMsg("Cannot check salt result, given result is null")
Jakub Josef79ecec32017-02-17 14:36:28 +0100846 }
847}
848
849/**
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200850* Parse salt API output to check minion restart and wait some time to be sure minion is up.
851* See https://mirantis.jira.com/browse/PROD-16258 for more details
852* TODO: change sleep to more tricky procedure.
853*
854* @param result Parsed response of Salt API
855*/
Vasyl Saienko6a396212018-06-08 09:20:08 +0300856def waitForMinion(result, minionRestartWaitTimeout=10) {
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200857 def common = new com.mirantis.mk.Common()
Oleg Iurchenko3eedc782017-12-12 11:49:29 +0200858 //In order to prevent multiple sleeps use bool variable to catch restart for any minion.
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200859 def isMinionRestarted = false
Oleg Iurchenko3eedc782017-12-12 11:49:29 +0200860 if(result != null){
861 if(result['return']){
862 for (int i=0;i<result['return'].size();i++) {
863 def entry = result['return'][i]
864 // exit in case of empty response.
865 if (!entry) {
866 return
867 }
868 // Loop for nodes
869 for (int j=0;j<entry.size();j++) {
870 def nodeKey = entry.keySet()[j]
871 def node=entry[nodeKey]
872 if(node instanceof Map || node instanceof List){
873 // Loop for node resources
874 for (int k=0;k<node.size();k++) {
875 def resource;
876 def resKey;
877 if(node instanceof Map){
878 resKey = node.keySet()[k]
879 }else if(node instanceof List){
880 resKey = k
881 }
882 resource = node[resKey]
Jakub Joseffb9996d2018-04-10 14:05:31 +0200883 // try to find if salt_minion service was restarted
884 if(resKey instanceof String && resKey.contains("salt_minion_service_restart") && resource instanceof Map && resource.keySet().contains("result")){
Oleg Iurchenko3eedc782017-12-12 11:49:29 +0200885 if((resource["result"] instanceof Boolean && resource["result"]) || (resource["result"] instanceof String && resource["result"] == "true")){
886 if(resource.changes.size() > 0){
887 isMinionRestarted=true
888 }
889 }
890 }
891 }
892 }
893 }
894 }
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200895 }
896 }
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200897 if (isMinionRestarted){
Vasyl Saienko6a396212018-06-08 09:20:08 +0300898 common.infoMsg("Salt minion service restart detected. Sleep ${minionRestartWaitTimeout} seconds to wait minion restart")
899 sleep(minionRestartWaitTimeout)
Oleg Iurchenko7eb21502017-11-28 18:53:43 +0200900 }
901}
902
903/**
Jakub Josef7852fe12017-03-15 16:02:41 +0100904 * Print salt command run results in human-friendly form
Jakub Josef79ecec32017-02-17 14:36:28 +0100905 *
906 * @param result Parsed response of Salt API
Jakub Josef79ecec32017-02-17 14:36:28 +0100907 */
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100908def printSaltCommandResult(result) {
Jakub Josef871bf152017-03-14 20:13:41 +0100909 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100910 if(result != null){
911 if(result['return']){
912 for (int i=0; i<result['return'].size(); i++) {
913 def entry = result['return'][i]
914 for (int j=0; j<entry.size(); j++) {
915 common.debugMsg("printSaltCommandResult: printing salt command entry: ${entry}")
916 def nodeKey = entry.keySet()[j]
917 def node=entry[nodeKey]
Jakub Josefbceaa322017-06-13 18:28:27 +0200918 common.infoMsg(String.format("Node %s changes:\n%s",nodeKey, common.prettify(node)))
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100919 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100920 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100921 }else{
922 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100923 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100924 }else{
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100925 common.errorMsg("Cannot print salt command result, given result is null")
Jakub Josef52f69f72017-03-14 15:18:08 +0100926 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100927}
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200928
929
930/**
931 * Return content of file target
932 *
chnydaa0dbb252017-10-05 10:46:09 +0200933 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200934 * @param target Compound target (should target only one host)
935 * @param file File path to read (/etc/hosts for example)
936 */
937
chnydaa0dbb252017-10-05 10:46:09 +0200938def getFileContent(saltId, target, file) {
939 result = cmdRun(saltId, target, "cat ${file}")
Tomáš Kukrálf1a692a2017-08-11 13:29:28 +0200940 return result['return'][0].values()[0].replaceAll('Salt command execution success','')
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200941}
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300942
943/**
944 * Set override parameters in Salt cluster metadata
945 *
chnydaa0dbb252017-10-05 10:46:09 +0200946 * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method)
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300947 * @param salt_overrides YAML formatted string containing key: value, one per line
Matthew Mosesohne5646842017-07-19 16:54:57 +0300948 * @param reclass_dir Directory where Reclass git repo is located
Dzmitry Stremkouskib5440702018-07-22 13:00:05 +0200949 * @param extra_tgt Extra targets for compound
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300950 */
951
Oleh Hryhorov5f96e092018-06-22 18:37:08 +0300952def setSaltOverrides(saltId, salt_overrides, reclass_dir="/srv/salt/reclass", extra_tgt = '') {
Tomáš Kukrálf178f052017-07-11 11:31:00 +0200953 def common = new com.mirantis.mk.Common()
Mykyta Karpin1c165e22017-08-22 18:27:01 +0300954 def salt_overrides_map = readYaml text: salt_overrides
Tomáš Kukrál243cf842017-07-11 13:11:56 +0200955 for (entry in common.entries(salt_overrides_map)) {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300956 def key = entry[0]
957 def value = entry[1]
958
959 common.debugMsg("Set salt override ${key}=${value}")
Oleh Hryhorov5f96e092018-06-22 18:37:08 +0300960 runSaltProcessStep(saltId, "I@salt:master ${extra_tgt}", 'reclass.cluster_meta_set', [key, value], false)
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300961 }
Oleh Hryhorov5f96e092018-06-22 18:37:08 +0300962 runSaltProcessStep(saltId, "I@salt:master ${extra_tgt}", 'cmd.run', ["git -C ${reclass_dir} update-index --skip-worktree classes/cluster/overrides.yml"])
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300963}
Oleg Grigorovbec45582017-09-12 20:29:24 +0300964
965/**
966* Execute salt commands via salt-api with
967* CLI client salt-pepper
968*
969* @param data Salt command map
970* @param venv Path to virtualenv with
971*/
972
973def runPepperCommand(data, venv) {
Jakub Josef03d4d5a2017-12-20 16:35:09 +0100974 def common = new com.mirantis.mk.Common()
Oleg Grigorovbec45582017-09-12 20:29:24 +0300975 def python = new com.mirantis.mk.Python()
976 def dataStr = new groovy.json.JsonBuilder(data).toString()
chnyda4901a042017-11-16 12:14:56 +0100977
Jakub Josefa2491ad2018-01-15 16:26:27 +0100978 def pepperCmdFile = "${venv}/pepper-cmd.json"
979 writeFile file: pepperCmdFile, text: dataStr
980 def pepperCmd = "pepper -c ${venv}/pepperrc --make-token -x ${venv}/.peppercache --json-file ${pepperCmdFile}"
Oleg Grigorovbec45582017-09-12 20:29:24 +0300981
982 if (venv) {
Jakub Josefe2f4ebb2018-01-15 16:11:51 +0100983 output = python.runVirtualenvCommand(venv, pepperCmd, true)
Oleg Grigorovbec45582017-09-12 20:29:24 +0300984 } else {
985 echo("[Command]: ${pepperCmd}")
986 output = sh (
987 script: pepperCmd,
988 returnStdout: true
989 ).trim()
990 }
991
Jakub Josef37cd4972018-02-01 16:25:25 +0100992 def outputObj
993 try {
994 outputObj = new groovy.json.JsonSlurperClassic().parseText(output)
995 } catch(Exception e) {
996 common.errorMsg("Parsing Salt API JSON response failed! Response: " + output)
997 throw e
998 }
999 return outputObj
Oleg Grigorovbec45582017-09-12 20:29:24 +03001000}