blob: d7a962a85da907f00c5a5d5aaa025936ba5c7c41 [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
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100146 common.infoMsg("Enforcing 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 Broulik2c69f3d2017-07-18 14:23:58 +0200217 return command_status(master, target, 'salt-key | grep ' + minion_name, minion_name, waitUntilPresent, batch, output)
218}
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')
226 * @param waitUntilOk return after the minion becomes present (optional, default true)
227 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
228 * @param output print salt command (default true)
229 * @return output of salt command
230 */
Jakub Josef115a78f2017-07-18 15:04:00 +0200231def commandStatus(master, target, cmd, correct_state='running', waitUntilOk = true, batch=null, output = true, maxRetries = 200) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200232 def common = new com.mirantis.mk.Common()
233 common.infoMsg("Checking if status of verification command ${cmd} on ${target} is in correct state")
234 if (waitUntilOk){
235 def count = 0
236 while(count < maxRetries) {
237 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd])
Jakub Josef115a78f2017-07-18 15:04:00 +0200238 def resultMap = out["return"][0]
239 def result = resultMap.get(resultMap.keySet()[0])
240 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200241 if (output) {
242 printSaltCommandResult(out)
243 }
244 return out
245 }
246 count++
247 sleep(time: 500, unit: 'MILLISECONDS')
248 }
249 } else {
250 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd])
Jakub Josef115a78f2017-07-18 15:04:00 +0200251 def resultMap = out["return"][0]
252 def result = resultMap.get(resultMap.keySet()[0])
253 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200254 if (output) {
255 printSaltCommandResult(out)
256 }
257 return out
258 }
259 }
260 // otherwise throw exception
261 throw new Exception("${cmd} signals failure of status check!")
262}
263
264
Jakub Josef5ade54c2017-03-10 16:14:01 +0100265/**
266 * Perform complete salt sync between master and target
267 * @param master Salt connection object
268 * @param target Get pillar target
269 * @return output of salt command
270 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100271def syncAll(master, target) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100272 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all')
Jakub Josef79ecec32017-02-17 14:36:28 +0100273}
274
Jakub Josef5ade54c2017-03-10 16:14:01 +0100275/**
276 * Enforce highstate on given targets
277 * @param master Salt connection object
278 * @param target Highstate enforcing target
279 * @param output print output (optional, default true)
280 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200281 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100282 * @return output of salt command
283 */
Jakub Josef2f25cf22017-03-28 13:34:57 +0200284def enforceHighstate(master, target, output = false, failOnError = true, batch = null) {
285 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch)
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000286 def common = new com.mirantis.mk.Common()
287
288 common.infoMsg("Running step state.highstate on ${target}")
289
Jakub Josef374beb72017-04-27 15:45:09 +0200290 checkResult(out, failOnError, output)
Jakub Josef79ecec32017-02-17 14:36:28 +0100291 return out
292}
293
Jakub Josef5ade54c2017-03-10 16:14:01 +0100294/**
Ales Komarek5276ebe2017-03-16 08:46:34 +0100295 * Get running minions IDs according to the target
296 * @param master Salt connection object
297 * @param target Get minions target
298 * @return list of active minions fitin
299 */
300def getMinions(master, target) {
Tomáš Kukrál18ac50f2017-07-13 10:22:09 +0200301 def minionsRaw = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'test.ping')
Ales Komarek5276ebe2017-03-16 08:46:34 +0100302 return new ArrayList<String>(minionsRaw['return'][0].keySet())
303}
304
305
306/**
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200307 * Test if there are any minions to target
308 * @param master Salt connection object
309 * @param target Target to test
vrovachev1c4770b2017-07-05 13:25:21 +0400310 * @return bool indicating if target was succesful
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200311 */
312
313def testTarget(master, target) {
314 return getMinions(master, target).size() > 0
315}
316
317/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100318 * Generates node key using key.gen_accept call
319 * @param master Salt connection object
320 * @param target Key generating target
321 * @param host Key generating host
322 * @param keysize generated key size (optional, default 4096)
323 * @return output of salt command
324 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100325def generateNodeKey(master, target, host, keysize = 4096) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100326 return runSaltCommand(master, 'wheel', target, 'key.gen_accept', [host], ['keysize': keysize])
Jakub Josef79ecec32017-02-17 14:36:28 +0100327}
328
Jakub Josef5ade54c2017-03-10 16:14:01 +0100329/**
Jakub Josef2f25cf22017-03-28 13:34:57 +0200330 * Generates node reclass metadata
Jakub Josef5ade54c2017-03-10 16:14:01 +0100331 * @param master Salt connection object
332 * @param target Metadata generating target
333 * @param host Metadata generating host
334 * @param classes Reclass classes
335 * @param parameters Reclass parameters
336 * @return output of salt command
337 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100338def generateNodeMetadata(master, target, host, classes, parameters) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100339 return runSaltCommand(master, 'local', target, 'reclass.node_create', [host, '_generated'], ['classes': classes, 'parameters': parameters])
Jakub Josef79ecec32017-02-17 14:36:28 +0100340}
341
Jakub Josef5ade54c2017-03-10 16:14:01 +0100342/**
343 * Run salt orchestrate on given targets
344 * @param master Salt connection object
345 * @param target Orchestration target
346 * @param orchestrate Salt orchestrate params
347 * @return output of salt command
348 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100349def orchestrateSystem(master, target, orchestrate) {
350 return runSaltCommand(master, 'runner', target, 'state.orchestrate', [orchestrate])
351}
352
Jakub Josef5ade54c2017-03-10 16:14:01 +0100353/**
354 * Run salt process step
355 * @param master Salt connection object
356 * @param tgt Salt process step target
357 * @param fun Salt process step function
358 * @param arg process step arguments (optional, default [])
Jakub Josef2f25cf22017-03-28 13:34:57 +0200359 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100360 * @param output print output (optional, default false)
Jiri Broulik48544be2017-06-14 18:33:54 +0200361 * @param timeout Additional argument salt api timeout
Jakub Josef5ade54c2017-03-10 16:14:01 +0100362 * @return output of salt command
363 */
Jiri Broulik48544be2017-06-14 18:33:54 +0200364def runSaltProcessStep(master, tgt, fun, arg = [], batch = null, output = false, timeout = -1) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100365 def common = new com.mirantis.mk.Common()
Jiri Broulik48544be2017-06-14 18:33:54 +0200366 def salt = new com.mirantis.mk.Salt()
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100367 def out
368
Tomas Kukrale90bb342017-03-02 21:30:35 +0000369 common.infoMsg("Running step ${fun} on ${tgt}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100370
Filip Pytlounf0435c02017-03-02 17:48:54 +0100371 if (batch == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200372 out = runSaltCommand(master, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg, null, timeout)
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100373 } else {
Jiri Broulik48544be2017-06-14 18:33:54 +0200374 out = runSaltCommand(master, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg, null, timeout)
Jakub Josef79ecec32017-02-17 14:36:28 +0100375 }
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100376
Tomáš Kukrálf5dda642017-03-02 14:22:59 +0100377 if (output == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200378 salt.printSaltCommandResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100379 }
Jiri Broulikae19c262017-05-16 19:06:52 +0200380 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100381}
382
383/**
384 * Check result for errors and throw exception if any found
385 *
386 * @param result Parsed response of Salt API
Jakub Josef8021c002017-03-27 15:41:28 +0200387 * @param failOnError Do you want to throw exception if salt-call fails (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200388 * @param printResults Do you want to print salt results (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200389 * @param printOnlyChanges If true (default), print only changed resources
Jakub Josef79ecec32017-02-17 14:36:28 +0100390 */
Jakub Josef374beb72017-04-27 15:45:09 +0200391def checkResult(result, failOnError = true, printResults = true, printOnlyChanges = true) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100392 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100393 if(result != null){
394 if(result['return']){
395 for (int i=0;i<result['return'].size();i++) {
396 def entry = result['return'][i]
397 if (!entry) {
398 if (failOnError) {
399 throw new Exception("Salt API returned empty response: ${result}")
400 } else {
401 common.errorMsg("Salt API returned empty response: ${result}")
Jakub Josefece32af2017-03-14 19:20:08 +0100402 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100403 }
404 for (int j=0;j<entry.size();j++) {
405 def nodeKey = entry.keySet()[j]
406 def node=entry[nodeKey]
Jakub Josefa87941c2017-04-20 17:14:58 +0200407 def outputResources = []
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100408 common.infoMsg("Node ${nodeKey} changes:")
409 if(node instanceof Map || node instanceof List){
410 for (int k=0;k<node.size();k++) {
411 def resource;
412 def resKey;
413 if(node instanceof Map){
414 resKey = node.keySet()[k]
415 }else if(node instanceof List){
416 resKey = k
417 }
418 resource = node[resKey]
Jakub Josefc4c40202017-04-28 12:04:24 +0200419 // print
Jakub Josefa87941c2017-04-20 17:14:58 +0200420 if(printResults){
421 if(resource instanceof Map && resource.keySet().contains("result")){
422 //clean unnesaccary fields
423 if(resource.keySet().contains("__run_num__")){
424 resource.remove("__run_num__")
425 }
426 if(resource.keySet().contains("__id__")){
427 resource.remove("__id__")
428 }
429 if(resource.keySet().contains("pchanges")){
430 resource.remove("pchanges")
431 }
432 if(!resource["result"] || (resource["result"] instanceof String && resource["result"] != "true")){
433 if(resource["result"] != null){
Jakub Josefbceaa322017-06-13 18:28:27 +0200434 outputResources.add(String.format("Resource: %s\n\u001B[31m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200435 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200436 outputResources.add(String.format("Resource: %s\n\u001B[33m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200437 }
438 }else{
439 if(!printOnlyChanges || resource.changes.size() > 0){
Jakub Josefbceaa322017-06-13 18:28:27 +0200440 outputResources.add(String.format("Resource: %s\n\u001B[32m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200441 }
442 }
443 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200444 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200445 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100446 }
Jakub Josefc4c40202017-04-28 12:04:24 +0200447 common.debugMsg("checkResult: checking resource: ${resource}")
448 if(resource instanceof String || (resource["result"] != null && !resource["result"]) || (resource["result"] instanceof String && resource["result"] == "false")){
Jakub Josefbceaa322017-06-13 18:28:27 +0200449 def prettyResource = common.prettify(resource)
Jakub Josefc4c40202017-04-28 12:04:24 +0200450 if(env["ASK_ON_ERROR"] && env["ASK_ON_ERROR"] == "true"){
451 timeout(time:1, unit:'HOURS') {
452 input message: "False result on ${nodeKey} found, resource ${prettyResource}. \nDo you want to continue?"
453 }
454 }else{
Jakub Josefd97d7db2017-05-11 19:11:53 +0200455 common.errorMsg(String.format("Resource: %s\n%s", resKey, prettyResource))
Jakub Josefd9001df2017-05-11 16:45:28 +0200456 def errorMsg = "Salt state on node ${nodeKey} failed: ${prettyResource}."
Jakub Josefc4c40202017-04-28 12:04:24 +0200457 if (failOnError) {
458 throw new Exception(errorMsg)
459 } else {
460 common.errorMsg(errorMsg)
461 }
462 }
463 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100464 }
Jakub Josefa87941c2017-04-20 17:14:58 +0200465 }else if(node!=null && node!=""){
Jakub Josefbceaa322017-06-13 18:28:27 +0200466 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(node)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200467 }
468 if(printResults && !outputResources.isEmpty()){
Jakub Josefb77c0812017-03-27 14:11:01 +0200469 wrap([$class: 'AnsiColorBuildWrapper']) {
470 print outputResources.stream().collect(Collectors.joining("\n"))
471 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100472 }
473 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100474 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100475 }else{
476 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100477 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100478 }else{
Jakub Josefa87941c2017-04-20 17:14:58 +0200479 common.errorMsg("Cannot check salt result, given result is null")
Jakub Josef79ecec32017-02-17 14:36:28 +0100480 }
481}
482
483/**
Jakub Josef7852fe12017-03-15 16:02:41 +0100484 * Print salt command run results in human-friendly form
Jakub Josef79ecec32017-02-17 14:36:28 +0100485 *
486 * @param result Parsed response of Salt API
Jakub Josef79ecec32017-02-17 14:36:28 +0100487 */
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100488def printSaltCommandResult(result) {
Jakub Josef871bf152017-03-14 20:13:41 +0100489 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100490 if(result != null){
491 if(result['return']){
492 for (int i=0; i<result['return'].size(); i++) {
493 def entry = result['return'][i]
494 for (int j=0; j<entry.size(); j++) {
495 common.debugMsg("printSaltCommandResult: printing salt command entry: ${entry}")
496 def nodeKey = entry.keySet()[j]
497 def node=entry[nodeKey]
Jakub Josefbceaa322017-06-13 18:28:27 +0200498 common.infoMsg(String.format("Node %s changes:\n%s",nodeKey, common.prettify(node)))
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100499 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100500 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100501 }else{
502 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100503 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100504 }else{
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100505 common.errorMsg("Cannot print salt command result, given result is null")
Jakub Josef52f69f72017-03-14 15:18:08 +0100506 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100507}
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200508
509
510/**
511 * Return content of file target
512 *
513 * @param master Salt master object
514 * @param target Compound target (should target only one host)
515 * @param file File path to read (/etc/hosts for example)
516 */
517
518def getFileContent(master, target, file) {
519 result = cmdRun(master, target, "cat ${file}")
520 return result['return'][0].values()[0]
521}
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300522
523/**
524 * Set override parameters in Salt cluster metadata
525 *
526 * @param master Salt master object
527 * @param salt_overrides YAML formatted string containing key: value, one per line
528 */
529
530def setSaltOverrides(master, salt_overrides, debug=false) {
531 def mcpcommon = new com.mirantis.mcp.Common()
Tomáš Kukrálf178f052017-07-11 11:31:00 +0200532 def common = new com.mirantis.mk.Common()
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300533
534 def salt_overrides_map = mcpcommon.loadYAML(salt_overrides)
Tomáš Kukrál243cf842017-07-11 13:11:56 +0200535 for (entry in common.entries(salt_overrides_map)) {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300536 def key = entry[0]
537 def value = entry[1]
538
539 common.debugMsg("Set salt override ${key}=${value}")
540 runSaltProcessStep(master, 'I@salt:master', 'reclass.cluster_meta_set', ["${key}", "${value}"], false, debug)
541 }
542}