blob: 54ce35acf088f53e71ae53f4867a439797a495dc [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 Broulikea5462e2017-07-24 14:10:04 +0200217 return commandStatus(master, target, 'salt-key | grep ' + minion_name, minion_name, 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')
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 */
Jiri Broulikd0c27572017-07-24 20:01:10 +0200231def commandStatus(master, target, cmd, correct_state='running', find = true, 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) {
Jiri Broulikd0c27572017-07-24 20:01:10 +0200237 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5)
Jakub Josef115a78f2017-07-18 15:04:00 +0200238 def resultMap = out["return"][0]
239 def result = resultMap.get(resultMap.keySet()[0])
Jiri Broulikd0c27572017-07-24 20:01:10 +0200240 // if the goal is to find some string in output of the command
241 if (find) {
242 if(result == null || result.isEmpty()) { result='' }
243 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
244 if (output) {
245 printSaltCommandResult(out)
246 }
247 return out
248 }
249
250 // else the goal is to not find any string in output of the command
251 } else {
252 if(result instanceof String && result.isEmpty()) {
253 return out
254 }
255 }
256 count++
257 sleep(time: 500, unit: 'MILLISECONDS')
258 common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state")
259 }
260 } else {
261 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd])
262 def resultMap = out["return"][0]
263 def result = resultMap.get(resultMap.keySet()[0])
264
265 // if the goal is to find some string in output of the command
266 if (find) {
267 if(result == null || result.isEmpty()) { result='' }
Jakub Josef115a78f2017-07-18 15:04:00 +0200268 if (result.toLowerCase().contains(correct_state.toLowerCase())) {
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200269 if (output) {
270 printSaltCommandResult(out)
271 }
272 return out
273 }
Jiri Broulikd0c27572017-07-24 20:01:10 +0200274
275 // else the goal is to not find any string in output of the command
276 } else {
277 if(result instanceof String && result.isEmpty()) {
278 return out
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200279 }
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200280 }
281 }
282 // otherwise throw exception
Jiri Broulikd0c27572017-07-24 20:01:10 +0200283 common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.")
Jiri Broulik2c69f3d2017-07-18 14:23:58 +0200284 throw new Exception("${cmd} signals failure of status check!")
285}
286
Jakub Josef5ade54c2017-03-10 16:14:01 +0100287/**
288 * Perform complete salt sync between master and target
289 * @param master Salt connection object
290 * @param target Get pillar target
291 * @return output of salt command
292 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100293def syncAll(master, target) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100294 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all')
Jakub Josef79ecec32017-02-17 14:36:28 +0100295}
296
Jakub Josef5ade54c2017-03-10 16:14:01 +0100297/**
298 * Enforce highstate on given targets
299 * @param master Salt connection object
300 * @param target Highstate enforcing target
301 * @param output print output (optional, default true)
302 * @param failOnError throw exception on salt state result:false (optional, default true)
Jakub Josef2f25cf22017-03-28 13:34:57 +0200303 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100304 * @return output of salt command
305 */
Jakub Josef2f25cf22017-03-28 13:34:57 +0200306def enforceHighstate(master, target, output = false, failOnError = true, batch = null) {
307 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch)
Alexander Noskov657ccfc2017-07-14 11:35:52 +0000308 def common = new com.mirantis.mk.Common()
309
310 common.infoMsg("Running step state.highstate on ${target}")
311
Jakub Josef374beb72017-04-27 15:45:09 +0200312 checkResult(out, failOnError, output)
Jakub Josef79ecec32017-02-17 14:36:28 +0100313 return out
314}
315
Jakub Josef5ade54c2017-03-10 16:14:01 +0100316/**
Ales Komarek5276ebe2017-03-16 08:46:34 +0100317 * Get running minions IDs according to the target
318 * @param master Salt connection object
319 * @param target Get minions target
320 * @return list of active minions fitin
321 */
322def getMinions(master, target) {
Tomáš Kukrál18ac50f2017-07-13 10:22:09 +0200323 def minionsRaw = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'test.ping')
Ales Komarek5276ebe2017-03-16 08:46:34 +0100324 return new ArrayList<String>(minionsRaw['return'][0].keySet())
325}
326
327
328/**
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200329 * Test if there are any minions to target
330 * @param master Salt connection object
331 * @param target Target to test
vrovachev1c4770b2017-07-05 13:25:21 +0400332 * @return bool indicating if target was succesful
Tomáš Kukrálb12ff9f2017-07-12 12:32:34 +0200333 */
334
335def testTarget(master, target) {
336 return getMinions(master, target).size() > 0
337}
338
339/**
Jakub Josef5ade54c2017-03-10 16:14:01 +0100340 * Generates node key using key.gen_accept call
341 * @param master Salt connection object
342 * @param target Key generating target
343 * @param host Key generating host
344 * @param keysize generated key size (optional, default 4096)
345 * @return output of salt command
346 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100347def generateNodeKey(master, target, host, keysize = 4096) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100348 return runSaltCommand(master, 'wheel', target, 'key.gen_accept', [host], ['keysize': keysize])
Jakub Josef79ecec32017-02-17 14:36:28 +0100349}
350
Jakub Josef5ade54c2017-03-10 16:14:01 +0100351/**
Jakub Josef2f25cf22017-03-28 13:34:57 +0200352 * Generates node reclass metadata
Jakub Josef5ade54c2017-03-10 16:14:01 +0100353 * @param master Salt connection object
354 * @param target Metadata generating target
355 * @param host Metadata generating host
356 * @param classes Reclass classes
357 * @param parameters Reclass parameters
358 * @return output of salt command
359 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100360def generateNodeMetadata(master, target, host, classes, parameters) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100361 return runSaltCommand(master, 'local', target, 'reclass.node_create', [host, '_generated'], ['classes': classes, 'parameters': parameters])
Jakub Josef79ecec32017-02-17 14:36:28 +0100362}
363
Jakub Josef5ade54c2017-03-10 16:14:01 +0100364/**
365 * Run salt orchestrate on given targets
366 * @param master Salt connection object
367 * @param target Orchestration target
368 * @param orchestrate Salt orchestrate params
369 * @return output of salt command
370 */
Jakub Josef79ecec32017-02-17 14:36:28 +0100371def orchestrateSystem(master, target, orchestrate) {
372 return runSaltCommand(master, 'runner', target, 'state.orchestrate', [orchestrate])
373}
374
Jakub Josef5ade54c2017-03-10 16:14:01 +0100375/**
376 * Run salt process step
377 * @param master Salt connection object
378 * @param tgt Salt process step target
379 * @param fun Salt process step function
380 * @param arg process step arguments (optional, default [])
Jakub Josef2f25cf22017-03-28 13:34:57 +0200381 * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch)
Jakub Josef5ade54c2017-03-10 16:14:01 +0100382 * @param output print output (optional, default false)
Jiri Broulik48544be2017-06-14 18:33:54 +0200383 * @param timeout Additional argument salt api timeout
Jakub Josef5ade54c2017-03-10 16:14:01 +0100384 * @return output of salt command
385 */
Jiri Broulik48544be2017-06-14 18:33:54 +0200386def runSaltProcessStep(master, tgt, fun, arg = [], batch = null, output = false, timeout = -1) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100387 def common = new com.mirantis.mk.Common()
Jiri Broulik48544be2017-06-14 18:33:54 +0200388 def salt = new com.mirantis.mk.Salt()
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100389 def out
390
Tomas Kukrale90bb342017-03-02 21:30:35 +0000391 common.infoMsg("Running step ${fun} on ${tgt}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100392
Filip Pytlounf0435c02017-03-02 17:48:54 +0100393 if (batch == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200394 out = runSaltCommand(master, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg, null, timeout)
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100395 } else {
Jiri Broulik48544be2017-06-14 18:33:54 +0200396 out = runSaltCommand(master, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg, null, timeout)
Jakub Josef79ecec32017-02-17 14:36:28 +0100397 }
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100398
Tomáš Kukrálf5dda642017-03-02 14:22:59 +0100399 if (output == true) {
Jiri Broulik48544be2017-06-14 18:33:54 +0200400 salt.printSaltCommandResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100401 }
Jiri Broulikae19c262017-05-16 19:06:52 +0200402 return out
Jakub Josef79ecec32017-02-17 14:36:28 +0100403}
404
405/**
406 * Check result for errors and throw exception if any found
407 *
408 * @param result Parsed response of Salt API
Jakub Josef8021c002017-03-27 15:41:28 +0200409 * @param failOnError Do you want to throw exception if salt-call fails (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200410 * @param printResults Do you want to print salt results (optional, default true)
Jakub Josefa87941c2017-04-20 17:14:58 +0200411 * @param printOnlyChanges If true (default), print only changed resources
Jakub Josef79ecec32017-02-17 14:36:28 +0100412 */
Jakub Josef374beb72017-04-27 15:45:09 +0200413def checkResult(result, failOnError = true, printResults = true, printOnlyChanges = true) {
Jakub Josef5ade54c2017-03-10 16:14:01 +0100414 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100415 if(result != null){
416 if(result['return']){
417 for (int i=0;i<result['return'].size();i++) {
418 def entry = result['return'][i]
419 if (!entry) {
420 if (failOnError) {
421 throw new Exception("Salt API returned empty response: ${result}")
422 } else {
423 common.errorMsg("Salt API returned empty response: ${result}")
Jakub Josefece32af2017-03-14 19:20:08 +0100424 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100425 }
426 for (int j=0;j<entry.size();j++) {
427 def nodeKey = entry.keySet()[j]
428 def node=entry[nodeKey]
Jakub Josefa87941c2017-04-20 17:14:58 +0200429 def outputResources = []
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100430 common.infoMsg("Node ${nodeKey} changes:")
431 if(node instanceof Map || node instanceof List){
432 for (int k=0;k<node.size();k++) {
433 def resource;
434 def resKey;
435 if(node instanceof Map){
436 resKey = node.keySet()[k]
437 }else if(node instanceof List){
438 resKey = k
439 }
440 resource = node[resKey]
Jakub Josefc4c40202017-04-28 12:04:24 +0200441 // print
Jakub Josefa87941c2017-04-20 17:14:58 +0200442 if(printResults){
443 if(resource instanceof Map && resource.keySet().contains("result")){
444 //clean unnesaccary fields
445 if(resource.keySet().contains("__run_num__")){
446 resource.remove("__run_num__")
447 }
448 if(resource.keySet().contains("__id__")){
449 resource.remove("__id__")
450 }
451 if(resource.keySet().contains("pchanges")){
452 resource.remove("pchanges")
453 }
454 if(!resource["result"] || (resource["result"] instanceof String && resource["result"] != "true")){
455 if(resource["result"] != null){
Jakub Josefbceaa322017-06-13 18:28:27 +0200456 outputResources.add(String.format("Resource: %s\n\u001B[31m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200457 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200458 outputResources.add(String.format("Resource: %s\n\u001B[33m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200459 }
460 }else{
461 if(!printOnlyChanges || resource.changes.size() > 0){
Jakub Josefbceaa322017-06-13 18:28:27 +0200462 outputResources.add(String.format("Resource: %s\n\u001B[32m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200463 }
464 }
465 }else{
Jakub Josefbceaa322017-06-13 18:28:27 +0200466 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(resource)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200467 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100468 }
Jakub Josefc4c40202017-04-28 12:04:24 +0200469 common.debugMsg("checkResult: checking resource: ${resource}")
470 if(resource instanceof String || (resource["result"] != null && !resource["result"]) || (resource["result"] instanceof String && resource["result"] == "false")){
Jakub Josefbceaa322017-06-13 18:28:27 +0200471 def prettyResource = common.prettify(resource)
Jakub Josefc4c40202017-04-28 12:04:24 +0200472 if(env["ASK_ON_ERROR"] && env["ASK_ON_ERROR"] == "true"){
473 timeout(time:1, unit:'HOURS') {
474 input message: "False result on ${nodeKey} found, resource ${prettyResource}. \nDo you want to continue?"
475 }
476 }else{
Jakub Josefd97d7db2017-05-11 19:11:53 +0200477 common.errorMsg(String.format("Resource: %s\n%s", resKey, prettyResource))
Jakub Josefd9001df2017-05-11 16:45:28 +0200478 def errorMsg = "Salt state on node ${nodeKey} failed: ${prettyResource}."
Jakub Josefc4c40202017-04-28 12:04:24 +0200479 if (failOnError) {
480 throw new Exception(errorMsg)
481 } else {
482 common.errorMsg(errorMsg)
483 }
484 }
485 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100486 }
Jakub Josefa87941c2017-04-20 17:14:58 +0200487 }else if(node!=null && node!=""){
Jakub Josefbceaa322017-06-13 18:28:27 +0200488 outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(node)))
Jakub Josefa87941c2017-04-20 17:14:58 +0200489 }
490 if(printResults && !outputResources.isEmpty()){
Jakub Josefb77c0812017-03-27 14:11:01 +0200491 wrap([$class: 'AnsiColorBuildWrapper']) {
492 print outputResources.stream().collect(Collectors.joining("\n"))
493 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100494 }
495 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100496 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100497 }else{
498 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100499 }
Jakub Josef52f69f72017-03-14 15:18:08 +0100500 }else{
Jakub Josefa87941c2017-04-20 17:14:58 +0200501 common.errorMsg("Cannot check salt result, given result is null")
Jakub Josef79ecec32017-02-17 14:36:28 +0100502 }
503}
504
505/**
Jakub Josef7852fe12017-03-15 16:02:41 +0100506 * Print salt command run results in human-friendly form
Jakub Josef79ecec32017-02-17 14:36:28 +0100507 *
508 * @param result Parsed response of Salt API
Jakub Josef79ecec32017-02-17 14:36:28 +0100509 */
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100510def printSaltCommandResult(result) {
Jakub Josef871bf152017-03-14 20:13:41 +0100511 def common = new com.mirantis.mk.Common()
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100512 if(result != null){
513 if(result['return']){
514 for (int i=0; i<result['return'].size(); i++) {
515 def entry = result['return'][i]
516 for (int j=0; j<entry.size(); j++) {
517 common.debugMsg("printSaltCommandResult: printing salt command entry: ${entry}")
518 def nodeKey = entry.keySet()[j]
519 def node=entry[nodeKey]
Jakub Josefbceaa322017-06-13 18:28:27 +0200520 common.infoMsg(String.format("Node %s changes:\n%s",nodeKey, common.prettify(node)))
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100521 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100522 }
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100523 }else{
524 common.errorMsg("Salt result hasn't return attribute! Result: ${result}")
Jakub Josef79ecec32017-02-17 14:36:28 +0100525 }
Jakub Josef8a715bf2017-03-14 21:39:01 +0100526 }else{
Jakub Josefd9afd0e2017-03-15 19:19:23 +0100527 common.errorMsg("Cannot print salt command result, given result is null")
Jakub Josef52f69f72017-03-14 15:18:08 +0100528 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100529}
Tomáš Kukrálb12eedd2017-04-21 10:45:13 +0200530
531
532/**
533 * Return content of file target
534 *
535 * @param master Salt master object
536 * @param target Compound target (should target only one host)
537 * @param file File path to read (/etc/hosts for example)
538 */
539
540def getFileContent(master, target, file) {
541 result = cmdRun(master, target, "cat ${file}")
542 return result['return'][0].values()[0]
543}
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300544
545/**
546 * Set override parameters in Salt cluster metadata
547 *
548 * @param master Salt master object
549 * @param salt_overrides YAML formatted string containing key: value, one per line
Matthew Mosesohne5646842017-07-19 16:54:57 +0300550 * @param reclass_dir Directory where Reclass git repo is located
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300551 */
552
Matthew Mosesohne5646842017-07-19 16:54:57 +0300553def setSaltOverrides(master, salt_overrides, reclass_dir="/srv/salt/reclass") {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300554 def mcpcommon = new com.mirantis.mcp.Common()
Tomáš Kukrálf178f052017-07-11 11:31:00 +0200555 def common = new com.mirantis.mk.Common()
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300556
557 def salt_overrides_map = mcpcommon.loadYAML(salt_overrides)
Tomáš Kukrál243cf842017-07-11 13:11:56 +0200558 for (entry in common.entries(salt_overrides_map)) {
Matthew Mosesohn9e880852017-07-04 21:17:53 +0300559 def key = entry[0]
560 def value = entry[1]
561
562 common.debugMsg("Set salt override ${key}=${value}")
563 runSaltProcessStep(master, 'I@salt:master', 'reclass.cluster_meta_set', ["${key}", "${value}"], false, debug)
564 }
Matthew Mosesohne5646842017-07-19 16:54:57 +0300565 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 +0300566}