blob: 73072c7d08e7e284379b51e162df1d61f411be5e [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)
25
26 return params
27}
28
29/**
30 * Login to Salt API, return auth token
31 *
32 * @param master Salt connection object
33 */
34def saltLogin(master) {
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010035 def http = new com.mirantis.mk.Http()
Jakub Josef79ecec32017-02-17 14:36:28 +010036 data = [
37 'username': master.creds.username,
38 'password': master.creds.password.toString(),
39 'eauth': 'pam'
40 ]
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010041 authToken = http.restGet(master, '/login', data)['return'][0]['token']
Jakub Josef79ecec32017-02-17 14:36:28 +010042 return authToken
43}
44
45/**
46 * Run action using Salt API
47 *
48 * @param master Salt connection object
49 * @param client Client type
50 * @param target Target specification, eg. for compound matches by Pillar
51 * data: ['expression': 'I@openssh:server', 'type': 'compound'])
52 * @param function Function to execute (eg. "state.sls")
Jakub Josef2f25cf22017-03-28 13:34:57 +020053 * @param batch Batch param to salt (integer or string with percents)
Jakub Josef79ecec32017-02-17 14:36:28 +010054 * @param args Additional arguments to function
55 * @param kwargs Additional key-value arguments to function
Jiri Broulik48544be2017-06-14 18:33:54 +020056 * @param timeout Additional argument salt api timeout
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +030057 * @param read_timeout http session read timeout
Jakub Josef79ecec32017-02-17 14:36:28 +010058 */
59@NonCPS
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +030060def runSaltCommand(master, client, target, function, batch = null, args = null, kwargs = null, timeout = -1, read_timeout = -1) {
iberezovskiyd4240b52017-02-20 17:18:28 +040061 def http = new com.mirantis.mk.Http()
Jakub Josef79ecec32017-02-17 14:36:28 +010062
63 data = [
64 'tgt': target.expression,
65 'fun': function,
66 'client': client,
67 'expr_form': target.type,
68 ]
69
Jakub Josef5f838212017-04-06 12:43:58 +020070 if(batch != null && ( (batch instanceof Integer && batch > 0) || (batch instanceof String && batch.contains("%")))){
Jakub Josef2f25cf22017-03-28 13:34:57 +020071 data['client']= "local_batch"
72 data['batch'] = batch
Jakub Josef79ecec32017-02-17 14:36:28 +010073 }
74
75 if (args) {
76 data['arg'] = args
77 }
78
79 if (kwargs) {
80 data['kwarg'] = kwargs
81 }
82
Jiri Broulik48544be2017-06-14 18:33:54 +020083 if (timeout != -1) {
84 data['timeout'] = timeout
85 }
86
Jakub Josef79ecec32017-02-17 14:36:28 +010087 headers = [
88 'X-Auth-Token': "${master.authToken}"
89 ]
90
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +030091 return http.sendHttpPostRequest("${master.url}/", data, headers, read_timeout)
Jakub Josef79ecec32017-02-17 14:36:28 +010092}
93
Jakub Josef5ade54c2017-03-10 16:14:01 +010094/**
95 * Return pillar for given master and target
96 * @param master Salt connection object
97 * @param target Get pillar target
98 * @param pillar pillar name (optional)
99 * @return output of salt command
100 */
Ales Komarekcec24d42017-03-08 10:25:45 +0100101def getPillar(master, target, pillar = null) {
Tomáš Kukráld2589702017-03-10 16:30:46 +0100102 if (pillar != null) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100103 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'pillar.get', null, [pillar.replace('.', ':')])
Tomáš Kukráld2589702017-03-10 16:30:46 +0100104 } else {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100105 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'pillar.data')
Ales Komareka3c7e502017-03-13 11:20:44 +0100106 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100107}
108
Jakub Josef5ade54c2017-03-10 16:14:01 +0100109/**
110 * Return grain for given master and target
111 * @param master Salt connection object
112 * @param target Get grain target
113 * @param grain grain name (optional)
114 * @return output of salt command
115 */
Ales Komarekcec24d42017-03-08 10:25:45 +0100116def getGrain(master, target, grain = null) {
117 if(grain != null) {
Jiri Broulik852dfd52017-05-16 13:38:55 +0200118 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'grains.item', null, [grain])
Jakub Josef5ade54c2017-03-10 16:14:01 +0100119 } else {
Jiri Broulik852dfd52017-05-16 13:38:55 +0200120 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'grains.items')
Ales Komarekcec24d42017-03-08 10:25:45 +0100121 }
Ales Komarekcec24d42017-03-08 10:25:45 +0100122}
123
Jakub Josef5ade54c2017-03-10 16:14:01 +0100124/**
125 * Enforces state on given master and target
126 * @param master Salt connection object
127 * @param target State enforcing target
128 * @param state Salt state
129 * @param output print output (optional, default true)
130 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200131 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300132 * @param read_timeout http session read timeout
133 * @param retries Retry count for salt state.
Jakub Josef5ade54c2017-03-10 16:14:01 +0100134 * @return output of salt command
135 */
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300136def enforceState(master, target, state, output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100137 def common = new com.mirantis.mk.Common()
Jakub Josef79ecec32017-02-17 14:36:28 +0100138 def run_states
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100139
Jakub Josef79ecec32017-02-17 14:36:28 +0100140 if (state instanceof String) {
141 run_states = state
142 } else {
143 run_states = state.join(',')
144 }
145
Marek Celoud63366112017-07-25 17:27:24 +0200146 common.infoMsg("Running state ${run_states} on ${target}")
Vasyl Saienkoe36ab7c2017-07-17 14:35:48 +0300147 def out
148
149 if (optional == false || testTarget(master, target)){
150 if (retries != -1){
151 retry(retries){
152 out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, [run_states], null, -1, read_timeout)
153 }
154 }
155 else {
156 out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, [run_states], null, -1, read_timeout)
157 }
Martin Polreich1c77afa2017-07-18 11:27:02 +0200158 checkResult(out, failOnError, output)
159 return out
Martin Polreich1c77afa2017-07-18 11:27:02 +0200160 } else {
161 common.infoMsg("No Minions matched the target given, but 'optional' param was set to true - Pipeline continues. ")
162 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100163}
164
Jakub Josef5ade54c2017-03-10 16:14:01 +0100165/**
166 * Run command on salt minion (salt cmd.run wrapper)
167 * @param master Salt connection object
168 * @param target Get pillar target
169 * @param cmd command
Jakub Josef053df392017-05-03 15:51:05 +0200170 * @param checkResponse test command success execution (default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200171 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200172 * @param output do you want to print output
Jakub Josef5ade54c2017-03-10 16:14:01 +0100173 * @return output of salt command
174 */
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200175def cmdRun(master, target, cmd, checkResponse = true, batch=null, output = true) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100176 def common = new com.mirantis.mk.Common()
Jakub Josef053df392017-05-03 15:51:05 +0200177 def originalCmd = cmd
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100178 common.infoMsg("Running command ${cmd} on ${target}")
Jakub Josef053df392017-05-03 15:51:05 +0200179 if (checkResponse) {
180 cmd = cmd + " && echo Salt command execution success"
181 }
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200182 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.run', batch, [cmd])
Jakub Josef053df392017-05-03 15:51:05 +0200183 if (checkResponse) {
184 // iterate over all affected nodes and check success return code
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200185 if (out["return"]){
186 for(int i=0;i<out["return"].size();i++){
187 def node = out["return"][i];
Jakub Josef053df392017-05-03 15:51:05 +0200188 for(int j=0;j<node.size();j++){
189 def nodeKey = node.keySet()[j]
190 if (!node[nodeKey].contains("Salt command execution success")) {
191 throw new Exception("Execution of cmd ${originalCmd} failed. Server returns: ${node[nodeKey]}")
192 }
193 }
194 }
195 }else{
196 throw new Exception("Salt Api response doesn't have return param!")
197 }
198 }
Jiri Broulik16e9ce72017-05-17 13:28:31 +0200199 if (output == true) {
200 printSaltCommandResult(out)
201 }
202 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100203}
204
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200205
206/**
207 * Run command on salt minion (salt cmd.run wrapper)
208 * @param master Salt connection object
209 * @param target Get pillar target
210 * @param minion_name unique identification of a minion in salt-key command output
211 * @param waitUntilPresent return after the minion becomes present (default true)
212 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
213 * @param output print salt command (default true)
214 * @return output of salt command
215 */
Jakub Josef115a78f2017-07-18 15:04:00 +0200216def minionPresent(master, target, minion_name, waitUntilPresent = true, batch=null, output = true) {
Jiri Broulikcf1f2332017-07-25 11:30:03 +0200217 return commandStatus(master, target, 'salt-key | grep ' + minion_name, minion_name, true, waitUntilPresent, batch, output)
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200218}
219
220/**
221 * Run command on salt minion (salt cmd.run wrapper)
222 * @param master Salt connection object
223 * @param target Get pillar target
224 * @param cmd name of a service
225 * @param correct_state string that command must contain if status is in correct state (optional, default 'running')
Jiri Broulikcf1f2332017-07-25 11:30:03 +0200226 * @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 +0200227 * @param waitUntilOk return after the minion becomes present (optional, default true)
228 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
229 * @param output print salt command (default true)
230 * @return output of salt command
231 */
Jiri Broulikd0c27572017-07-24 20:01:10 +0200232def commandStatus(master, target, cmd, correct_state='running', find = true, waitUntilOk = true, batch=null, output = true, maxRetries = 200) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200233 def common = new com.mirantis.mk.Common()
234 common.infoMsg("Checking if status of verification command ${cmd} on ${target} is in correct state")
235 if (waitUntilOk){
236 def count = 0
237 while(count < maxRetries) {
Jiri Broulikd0c27572017-07-24 20:01:10 +0200238 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
Jakub Josef115a78f2017-07-18 15:04:00 +0200239 def resultMap = out["return"][0]
240 def result = resultMap.get(resultMap.keySet()[0])
Jiri Broulikd0c27572017-07-24 20:01:10 +0200241 // if the goal is to find some string in output of the command
242 if (find) {
243 if(result == null || result.isEmpty()) { result='' }
244 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
245 if (output) {
246 printSaltCommandResult(out)
247 }
248 return out
249 }
250
251 // else the goal is to not find any string in output of the command
252 } else {
253 if(result instanceof String && result.isEmpty()) {
254 return out
255 }
256 }
257 count++
258 sleep(time: 500, unit: 'MILLISECONDS')
259 common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state")
260 }
261 } else {
262 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd])
263 def resultMap = out["return"][0]
264 def result = resultMap.get(resultMap.keySet()[0])
265
266 // if the goal is to find some string in output of the command
267 if (find) {
268 if(result == null || result.isEmpty()) { result='' }
Jakub Josef115a78f2017-07-18 15:04:00 +0200269 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200270 if (output) {
271 printSaltCommandResult(out)
272 }
273 return out
274 }
Jiri Broulikd0c27572017-07-24 20:01:10 +0200275
276 // else the goal is to not find any string in output of the command
277 } else {
278 if(result instanceof String && result.isEmpty()) {
279 return out
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200280 }
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200281 }
282 }
283 // otherwise throw exception
Jiri Broulikd0c27572017-07-24 20:01:10 +0200284 common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.")
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200285 throw new Exception("${cmd} signals failure of status check!")
286}
287
Jakub Josef5ade54c2017-03-10 16:14:01 +0100288/**
289 * Perform complete salt sync between master and target
290 * @param master Salt connection object
291 * @param target Get pillar target
292 * @return output of salt command
293 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100294def syncAll(master, target) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100295 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all')
Jakub Josef79ecec32017-02-17 14:36:28 +0100296}
297
Jakub Josef5ade54c2017-03-10 16:14:01 +0100298/**
299 * Enforce highstate on given targets
300 * @param master Salt connection object
301 * @param target Highstate enforcing target
302 * @param output print output (optional, default true)
303 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200304 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100305 * @return output of salt command
306 */
Jakub Josef2f25cf22017-03-28 13:34:57 +0200307def enforceHighstate(master, target, output = false, failOnError = true, batch = null) {
308 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch)
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000309 def common = new com.mirantis.mk.Common()
310
Marek Celoud63366112017-07-25 17:27:24 +0200311 common.infoMsg("Running state highstate on ${target}")
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000312
Jakub Josef374beb72017-04-27 15:45:09 +0200313 checkResult(out, failOnError, output)
Jakub Josef79ecec32017-02-17 14:36:28 +0100314 return out
315}
316
Jakub Josef5ade54c2017-03-10 16:14:01 +0100317/**
Ales Komarek5276ebe2017-03-16 08:46:34 +0100318 * Get running minions IDs according to the target
319 * @param master Salt connection object
320 * @param target Get minions target
321 * @return list of active minions fitin
322 */
323def getMinions(master, target) {
Tomáš Kukrál18ac50f2017-07-13 10:22:09 +0200324 def minionsRaw = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'test.ping')
Ales Komarek5276ebe2017-03-16 08:46:34 +0100325 return new ArrayList<String>(minionsRaw['return'][0].keySet())
326}
327
328
329/**
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200330 * Test if there are any minions to target
331 * @param master Salt connection object
332 * @param target Target to test
vrovachev1c4770b2017-07-05 13:25:21 +0400333 * @return bool indicating if target was succesful
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200334 */
335
336def testTarget(master, target) {
337 return getMinions(master, target).size() > 0
338}
339
340/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100341 * Generates node key using key.gen_accept call
342 * @param master Salt connection object
343 * @param target Key generating target
344 * @param host Key generating host
345 * @param keysize generated key size (optional, default 4096)
346 * @return output of salt command
347 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100348def generateNodeKey(master, target, host, keysize = 4096) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100349 return runSaltCommand(master, 'wheel', target, 'key.gen_accept', [host], ['keysize': keysize])
Jakub Josef79ecec32017-02-17 14:36:28 +0100350}
351
Jakub Josef5ade54c2017-03-10 16:14:01 +0100352/**
Jakub Josef2f25cf22017-03-28 13:34:57 +0200353 * Generates node reclass metadata
Jakub Josef5ade54c2017-03-10 16:14:01 +0100354 * @param master Salt connection object
355 * @param target Metadata generating target
356 * @param host Metadata generating host
357 * @param classes Reclass classes
358 * @param parameters Reclass parameters
359 * @return output of salt command
360 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100361def generateNodeMetadata(master, target, host, classes, parameters) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100362 return runSaltCommand(master, 'local', target, 'reclass.node_create', [host, '_generated'], ['classes': classes, 'parameters': parameters])
Jakub Josef79ecec32017-02-17 14:36:28 +0100363}
364
Jakub Josef5ade54c2017-03-10 16:14:01 +0100365/**
366 * Run salt orchestrate on given targets
367 * @param master Salt connection object
368 * @param target Orchestration target
369 * @param orchestrate Salt orchestrate params
370 * @return output of salt command
371 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100372def orchestrateSystem(master, target, orchestrate) {
373 return runSaltCommand(master, 'runner', target, 'state.orchestrate', [orchestrate])
374}
375
Jakub Josef5ade54c2017-03-10 16:14:01 +0100376/**
377 * Run salt process step
378 * @param master Salt connection object
379 * @param tgt Salt process step target
380 * @param fun Salt process step function
381 * @param arg process step arguments (optional, default [])
Jakub Josef2f25cf22017-03-28 13:34:57 +0200382 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100383 * @param output print output (optional, default false)
Jiri Broulik48544be2017-06-14 18:33:54 +0200384 * @param timeout Additional argument salt api timeout
Jakub Josef5ade54c2017-03-10 16:14:01 +0100385 * @return output of salt command
386 */
Jiri Broulik48544be2017-06-14 18:33:54 +0200387def runSaltProcessStep(master, tgt, fun, arg = [], batch = null, output = false, timeout = -1) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100388 def common = new com.mirantis.mk.Common()
Jiri Broulik48544be2017-06-14 18:33:54 +0200389 def salt = new com.mirantis.mk.Salt()
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100390 def out
391
Marek Celoud63366112017-07-25 17:27:24 +0200392 common.infoMsg("Running step ${fun} ${arg} on ${tgt}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100393
Filip Pytlounf0435c02017-03-02 17:48:54 +0100394 if (batch == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200395 out = runSaltCommand(master, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg, null, timeout)
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100396 } else {
Jiri Broulik48544be2017-06-14 18:33:54 +0200397 out = runSaltCommand(master, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg, null, timeout)
Jakub Josef79ecec32017-02-17 14:36:28 +0100398 }
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100399
Tomáš Kukrálf5dda642017-03-02 14:22:59 +0100400 if (output == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200401 salt.printSaltCommandResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100402 }
Jiri Broulikae19c262017-05-16 19:06:52 +0200403 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100404}
405
406/**
407 * Check result for errors and throw exception if any found
408 *
409 * @param result Parsed response of Salt API
Jakub Josef8021c002017-03-27 15:41:28 +0200410 * @param failOnError Do you want to throw exception if salt-call fails (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200411 * @param printResults Do you want to print salt results (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200412 * @param printOnlyChanges If true (default), print only changed resources
Jakub Josef79ecec32017-02-17 14:36:28 +0100413 */
Jakub Josef374beb72017-04-27 15:45:09 +0200414def checkResult(result, failOnError = true, printResults = true, printOnlyChanges = true) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100415 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100416 if(result != null){
417 if(result['return']){
418 for (int i=0;i<result['return'].size();i++) {
419 def entry = result['return'][i]
420 if (!entry) {
421 if (failOnError) {
422 throw new Exception("Salt API returned empty response: ${result}")
423 } else {
424 common.errorMsg("Salt API returned empty response: ${result}")
Jakub Josefece32af2017-03-14 19:20:08 +0100425 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100426 }
427 for (int j=0;j<entry.size();j++) {
428 def nodeKey = entry.keySet()[j]
429 def node=entry[nodeKey]
Jakub Josefa87941c2017-04-20 17:14:58 +0200430 def outputResources = []
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100431 common.infoMsg("Node ${nodeKey} changes:")
432 if(node instanceof Map || node instanceof List){
433 for (int k=0;k<node.size();k++) {
434 def resource;
435 def resKey;
436 if(node instanceof Map){
437 resKey = node.keySet()[k]
438 }else if(node instanceof List){
439 resKey = k
440 }
441 resource = node[resKey]
Jakub Josefc4c40202017-04-28 12:04:24 +0200442 // print
Jakub Josefa87941c2017-04-20 17:14:58 +0200443 if(printResults){
444 if(resource instanceof Map && resource.keySet().contains("result")){
445 //clean unnesaccary fields
446 if(resource.keySet().contains("__run_num__")){
447 resource.remove("__run_num__")
448 }
449 if(resource.keySet().contains("__id__")){
450 resource.remove("__id__")
451 }
452 if(resource.keySet().contains("pchanges")){
453 resource.remove("pchanges")
454 }
455 if(!resource["result"] || (resource["result"] instanceof String && resource["result"] != "true")){
456 if(resource["result"] != null){
Jakub Josefbceaa322017-06-13 18:28:27 +0200457 outputResources.add(String.format("Resource: %s\n\u001B[31m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200458 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200459 outputResources.add(String.format("Resource: %s\n\u001B[33m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200460 }
461 }else{
462 if(!printOnlyChanges || resource.changes.size() > 0){
Jakub Josefbceaa322017-06-13 18:28:27 +0200463 outputResources.add(String.format("Resource: %s\n\u001B[32m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200464 }
465 }
466 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200467 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200468 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100469 }
Jakub Josefc4c40202017-04-28 12:04:24 +0200470 common.debugMsg("checkResult: checking resource: ${resource}")
471 if(resource instanceof String || (resource["result"] != null && !resource["result"]) || (resource["result"] instanceof String && resource["result"] == "false")){
Jakub Josefbceaa322017-06-13 18:28:27 +0200472 def prettyResource = common.prettify(resource)
Jakub Josefc4c40202017-04-28 12:04:24 +0200473 if(env["ASK_ON_ERROR"] && env["ASK_ON_ERROR"] == "true"){
474 timeout(time:1, unit:'HOURS') {
475 input message: "False result on ${nodeKey} found, resource ${prettyResource}. \nDo you want to continue?"
476 }
477 }else{
Jakub Josefd97d7db2017-05-11 19:11:53 +0200478 common.errorMsg(String.format("Resource: %s\n%s", resKey, prettyResource))
Jakub Josefd9001df2017-05-11 16:45:28 +0200479 def errorMsg = "Salt state on node ${nodeKey} failed: ${prettyResource}."
Jakub Josefc4c40202017-04-28 12:04:24 +0200480 if (failOnError) {
481 throw new Exception(errorMsg)
482 } else {
483 common.errorMsg(errorMsg)
484 }
485 }
486 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100487 }
Jakub Josefa87941c2017-04-20 17:14:58 +0200488 }else if(node!=null && node!=""){
Jakub Josefbceaa322017-06-13 18:28:27 +0200489 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(node)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200490 }
491 if(printResults && !outputResources.isEmpty()){
Jakub Josefb77c0812017-03-27 14:11:01 +0200492 wrap([$class: 'AnsiColorBuildWrapper']) {
493 print outputResources.stream().collect(Collectors.joining("\n"))
494 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100495 }
496 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100497 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100498 }else{
499 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100500 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100501 }else{
Jakub Josefa87941c2017-04-20 17:14:58 +0200502 common.errorMsg("Cannot check salt result, given result is null")
Jakub Josef79ecec32017-02-17 14:36:28 +0100503 }
504}
505
506/**
Jakub Josef7852fe12017-03-15 16:02:41 +0100507 * Print salt command run results in human-friendly form
Jakub Josef79ecec32017-02-17 14:36:28 +0100508 *
509 * @param result Parsed response of Salt API
Jakub Josef79ecec32017-02-17 14:36:28 +0100510 */
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100511def printSaltCommandResult(result) {
Jakub Josef871bf152017-03-14 20:13:41 +0100512 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100513 if(result != null){
514 if(result['return']){
515 for (int i=0; i<result['return'].size(); i++) {
516 def entry = result['return'][i]
517 for (int j=0; j<entry.size(); j++) {
518 common.debugMsg("printSaltCommandResult: printing salt command entry: ${entry}")
519 def nodeKey = entry.keySet()[j]
520 def node=entry[nodeKey]
Jakub Josefbceaa322017-06-13 18:28:27 +0200521 common.infoMsg(String.format("Node %s changes:\n%s",nodeKey, common.prettify(node)))
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100522 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100523 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100524 }else{
525 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100526 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100527 }else{
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100528 common.errorMsg("Cannot print salt command result, given result is null")
Jakub Josef52f69f72017-03-14 15:18:08 +0100529 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100530}
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200531
532
533/**
534 * Return content of file target
535 *
536 * @param master Salt master object
537 * @param target Compound target (should target only one host)
538 * @param file File path to read (/etc/hosts for example)
539 */
540
541def getFileContent(master, target, file) {
542 result = cmdRun(master, target, "cat ${file}")
543 return result['return'][0].values()[0]
544}
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300545
546/**
547 * Set override parameters in Salt cluster metadata
548 *
549 * @param master Salt master object
550 * @param salt_overrides YAML formatted string containing key: value, one per line
Matthew Mosesohne5646842017-07-19 16:54:57 +0300551 * @param reclass_dir Directory where Reclass git repo is located
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300552 */
553
Matthew Mosesohne5646842017-07-19 16:54:57 +0300554def setSaltOverrides(master, salt_overrides, reclass_dir="/srv/salt/reclass") {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300555 def mcpcommon = new com.mirantis.mcp.Common()
Tomáš Kukrálf178f052017-07-11 11:31:00 +0200556 def common = new com.mirantis.mk.Common()
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300557
558 def salt_overrides_map = mcpcommon.loadYAML(salt_overrides)
Tomáš Kukrál243cf842017-07-11 13:11:56 +0200559 for (entry in common.entries(salt_overrides_map)) {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300560 def key = entry[0]
561 def value = entry[1]
562
563 common.debugMsg("Set salt override ${key}=${value}")
Matthew Mosesohn29c9e332017-07-25 14:00:17 +0300564 runSaltProcessStep(master, 'I@salt:master', 'reclass.cluster_meta_set', ["${key}", "${value}"], false)
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300565 }
Matthew Mosesohne5646842017-07-19 16:54:57 +0300566 runSaltProcessStep(master, 'I@salt:master', 'cmd.run', ["git -C ${reclass_dir} update-index --skip-worktree classes/cluster/overrides.yml"])
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300567}