Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 1 | package com.mirantis.mk |
| 2 | |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 3 | import com.cloudbees.groovy.cps.NonCPS |
Jakub Josef | b77c081 | 2017-03-27 14:11:01 +0200 | [diff] [blame] | 4 | import java.util.stream.Collectors |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 5 | /** |
| 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 | */ |
| 16 | def connection(url, credentialsId = "salt") { |
Tomáš Kukrál | 6c04bd0 | 2017-03-01 22:18:52 +0100 | [diff] [blame] | 17 | def common = new com.mirantis.mk.Common() |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 18 | params = [ |
| 19 | "url": url, |
| 20 | "credentialsId": credentialsId, |
| 21 | "authToken": null, |
| 22 | "creds": common.getCredentials(credentialsId) |
| 23 | ] |
| 24 | params["authToken"] = saltLogin(params) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 25 | return params |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Login to Salt API, return auth token |
| 30 | * |
| 31 | * @param master Salt connection object |
| 32 | */ |
| 33 | def saltLogin(master) { |
Tomáš Kukrál | 7bec053 | 2017-02-20 15:39:31 +0100 | [diff] [blame] | 34 | def http = new com.mirantis.mk.Http() |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 35 | data = [ |
| 36 | 'username': master.creds.username, |
| 37 | 'password': master.creds.password.toString(), |
| 38 | 'eauth': 'pam' |
| 39 | ] |
Tomáš Kukrál | 7bec053 | 2017-02-20 15:39:31 +0100 | [diff] [blame] | 40 | authToken = http.restGet(master, '/login', data)['return'][0]['token'] |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 41 | return authToken |
| 42 | } |
| 43 | |
| 44 | /** |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 45 | * Run action using Salt API (using plain HTTP request from Jenkins master) or Pepper (from slave shell) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 46 | * |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 47 | * @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 Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 48 | * @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 Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 52 | * @param batch Batch param to salt (integer or string with percents) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 53 | * @param args Additional arguments to function |
| 54 | * @param kwargs Additional key-value arguments to function |
Jiri Broulik | 48544be | 2017-06-14 18:33:54 +0200 | [diff] [blame] | 55 | * @param timeout Additional argument salt api timeout |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 56 | * @param read_timeout http session read timeout |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 57 | */ |
| 58 | @NonCPS |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 59 | def runSaltCommand(saltId, client, target, function, batch = null, args = null, kwargs = null, timeout = -1, read_timeout = -1) { |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 60 | |
| 61 | data = [ |
| 62 | 'tgt': target.expression, |
| 63 | 'fun': function, |
| 64 | 'client': client, |
| 65 | 'expr_form': target.type, |
| 66 | ] |
Richard Felkl | d9476ac | 2018-07-12 19:01:33 +0200 | [diff] [blame] | 67 | |
| 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 Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | if (args) { |
| 77 | data['arg'] = args |
| 78 | } |
| 79 | |
| 80 | if (kwargs) { |
| 81 | data['kwarg'] = kwargs |
| 82 | } |
| 83 | |
Jiri Broulik | 48544be | 2017-06-14 18:33:54 +0200 | [diff] [blame] | 84 | if (timeout != -1) { |
| 85 | data['timeout'] = timeout |
| 86 | } |
| 87 | |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 88 | // Command will be sent using HttpRequest |
| 89 | if (saltId instanceof HashMap && saltId.containsKey("authToken") ) { |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 90 | |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 91 | 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 Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 103 | } |
| 104 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 105 | /** |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 106 | * 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 Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 108 | * @param target Get pillar target |
| 109 | * @param pillar pillar name (optional) |
| 110 | * @return output of salt command |
| 111 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 112 | def getPillar(saltId, target, pillar = null) { |
Tomáš Kukrál | d258970 | 2017-03-10 16:30:46 +0100 | [diff] [blame] | 113 | if (pillar != null) { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 114 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'pillar.get', null, [pillar.replace('.', ':')]) |
Tomáš Kukrál | d258970 | 2017-03-10 16:30:46 +0100 | [diff] [blame] | 115 | } else { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 116 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'pillar.data') |
Ales Komarek | a3c7e50 | 2017-03-13 11:20:44 +0100 | [diff] [blame] | 117 | } |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 118 | } |
| 119 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 120 | /** |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 121 | * 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 Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 123 | * @param target Get grain target |
| 124 | * @param grain grain name (optional) |
| 125 | * @return output of salt command |
| 126 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 127 | def getGrain(saltId, target, grain = null) { |
Ales Komarek | cec24d4 | 2017-03-08 10:25:45 +0100 | [diff] [blame] | 128 | if(grain != null) { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 129 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'grains.item', null, [grain]) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 130 | } else { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 131 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'grains.items') |
Ales Komarek | cec24d4 | 2017-03-08 10:25:45 +0100 | [diff] [blame] | 132 | } |
Ales Komarek | cec24d4 | 2017-03-08 10:25:45 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Oleksii Grudev | 9e1d97a | 2018-06-29 16:04:30 +0300 | [diff] [blame] | 135 | /** |
| 136 | * Return config items for given saltId and target |
| 137 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 138 | * @param target Get grain target |
| 139 | * @param config grain name (optional) |
| 140 | * @return output of salt command |
| 141 | */ |
| 142 | def getConfig(saltId, target, config) { |
| 143 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'config.get', null, [config.replace('.', ':')], '--out=json') |
| 144 | } |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 145 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 146 | /** |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 147 | * Enforces state on given saltId and target |
| 148 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 149 | * @param target State enforcing target |
| 150 | * @param state Salt state |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 151 | * @param excludedStates states which will be excluded from main state (default empty string) |
| 152 | * @param output print output (optional, default true) |
| 153 | * @param failOnError throw exception on salt state result:false (optional, default true) |
| 154 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 155 | * @param optional Optional flag (if true pipeline will continue even if no minions for target found) |
| 156 | * @param read_timeout http session read timeout (optional, default -1 - disabled) |
| 157 | * @param retries Retry count for salt state. (optional, default -1 - no retries) |
| 158 | * @param queue salt queue parameter for state.sls calls (optional, default true) - CANNOT BE USED WITH BATCH |
| 159 | * @param saltArgs additional salt args eq. ["runas=aptly"] |
| 160 | * @return output of salt command |
| 161 | */ |
| 162 | def enforceStateWithExclude(saltId, target, state, excludedStates = "", output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1, queue=true, saltArgs=[]) { |
| 163 | saltArgs << "exclude=${excludedStates}" |
| 164 | return enforceState(saltId, target, state, output, failOnError, batch, optional, read_timeout, retries, queue, saltArgs) |
| 165 | } |
| 166 | |
Martin Polreich | 75e4064 | 2018-08-13 16:05:08 +0200 | [diff] [blame] | 167 | /** |
| 168 | * Allows to test the given target for reachability and if reachable enforces the state |
| 169 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 170 | * @param target State enforcing target |
| 171 | * @param state Salt state |
| 172 | * @param testTargetMatcher Salt compound matcher to be tested (default is empty string). If empty string, param `target` will be used for tests |
| 173 | * @param output print output (optional, default true) |
| 174 | * @param failOnError throw exception on salt state result:false (optional, default true) |
| 175 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 176 | * @param optional Optional flag (if true pipeline will continue even if no minions for target found) |
| 177 | * @param read_timeout http session read timeout (optional, default -1 - disabled) |
| 178 | * @param retries Retry count for salt state. (optional, default -1 - no retries) |
| 179 | * @param queue salt queue parameter for state.sls calls (optional, default true) - CANNOT BE USED WITH BATCH |
| 180 | * @param saltArgs additional salt args eq. ["runas=aptly"] |
| 181 | * @return output of salt command |
| 182 | */ |
| 183 | def enforceStateWithTest(saltId, target, state, testTargetMatcher = "", output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1, queue=true, saltArgs=[]) { |
| 184 | def common = new com.mirantis.mk.Common() |
| 185 | if (!testTargetMatcher) { |
| 186 | testTargetMatcher = target |
| 187 | } |
| 188 | if (testTarget(saltId, testTargetMatcher)) { |
| 189 | return enforceState(saltId, target, state, output, failOnError, batch, false, read_timeout, retries, queue, saltArgs) |
| 190 | } else { |
| 191 | if (!optional) { |
Martin Polreich | 92db3e1 | 2018-09-27 15:29:23 +0200 | [diff] [blame] | 192 | common.infoMsg("No Minions matched the target matcher: ${testTargetMatcher}, and 'optional' param was set to false. - This may signify missing pillar definition!!") |
| 193 | // throw new Exception("No Minions matched the target matcher: ${testTargetMatcher}.") TODO: Change the infoMsg to Error once the methods are changed to Use named params and optional param will be set globally |
Martin Polreich | 75e4064 | 2018-08-13 16:05:08 +0200 | [diff] [blame] | 194 | } else { |
Martin Polreich | 92db3e1 | 2018-09-27 15:29:23 +0200 | [diff] [blame] | 195 | common.infoMsg("No Minions matched the target matcher: ${testTargetMatcher}, but 'optional' param was set to true - Pipeline continues. ") |
Martin Polreich | 75e4064 | 2018-08-13 16:05:08 +0200 | [diff] [blame] | 196 | } |
| 197 | } |
| 198 | } |
| 199 | |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 200 | /* Enforces state on given saltId and target |
| 201 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 202 | * @param target State enforcing target |
| 203 | * @param state Salt state |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 204 | * @param output print output (optional, default true) |
| 205 | * @param failOnError throw exception on salt state result:false (optional, default true) |
Jakub Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 206 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 207 | * @param optional Optional flag (if true pipeline will continue even if no minions for target found) |
Petr Michalec | de0ff32 | 2017-10-04 09:32:14 +0200 | [diff] [blame] | 208 | * @param read_timeout http session read timeout (optional, default -1 - disabled) |
| 209 | * @param retries Retry count for salt state. (optional, default -1 - no retries) |
| 210 | * @param queue salt queue parameter for state.sls calls (optional, default true) - CANNOT BE USED WITH BATCH |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 211 | * @param saltArgs additional salt args eq. ["runas=aptly", exclude="opencontrail.database"] |
Vasyl Saienko | 6a39621 | 2018-06-08 09:20:08 +0300 | [diff] [blame] | 212 | * @param minionRestartWaitTimeout specifies timeout that we should wait after minion restart. |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 213 | * @return output of salt command |
| 214 | */ |
Vasyl Saienko | 6a39621 | 2018-06-08 09:20:08 +0300 | [diff] [blame] | 215 | def enforceState(saltId, target, state, output = true, failOnError = true, batch = null, optional = false, read_timeout=-1, retries=-1, queue=true, saltArgs = [], minionRestartWaitTimeout=10) { |
Tomáš Kukrál | 6c04bd0 | 2017-03-01 22:18:52 +0100 | [diff] [blame] | 216 | def common = new com.mirantis.mk.Common() |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 217 | // add state to salt args |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 218 | if (state instanceof String) { |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 219 | saltArgs << state |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 220 | } else { |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 221 | saltArgs << state.join(',') |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 222 | } |
| 223 | |
Jakub Josef | 84f0168 | 2018-02-07 14:26:19 +0100 | [diff] [blame] | 224 | common.infoMsg("Running state ${state} on ${target}") |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 225 | def out |
Petr Michalec | de0ff32 | 2017-10-04 09:32:14 +0200 | [diff] [blame] | 226 | def kwargs = [:] |
| 227 | |
| 228 | if (queue && batch == null) { |
| 229 | kwargs["queue"] = true |
| 230 | } |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 231 | |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 232 | if (optional == false || testTarget(saltId, target)){ |
Richard Felkl | 03203d6 | 2017-11-01 17:57:32 +0100 | [diff] [blame] | 233 | if (retries > 0){ |
Jakub Josef | 962ba91 | 2018-04-04 17:39:19 +0200 | [diff] [blame] | 234 | def retriesCounter = 0 |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 235 | retry(retries){ |
Jakub Josef | 962ba91 | 2018-04-04 17:39:19 +0200 | [diff] [blame] | 236 | retriesCounter++ |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 237 | // we have to reverse order in saltArgs because salt state have to be first |
| 238 | out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, saltArgs.reverse(), kwargs, -1, read_timeout) |
| 239 | // failOnError should be passed as true because we need to throw exception for retry block handler |
Jakub Josef | 962ba91 | 2018-04-04 17:39:19 +0200 | [diff] [blame] | 240 | checkResult(out, true, output, true, retriesCounter < retries) //disable ask on error for every interation except last one |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 241 | } |
Petr Michalec | de0ff32 | 2017-10-04 09:32:14 +0200 | [diff] [blame] | 242 | } else { |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 243 | // we have to reverse order in saltArgs because salt state have to be first |
| 244 | out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.sls', batch, saltArgs.reverse(), kwargs, -1, read_timeout) |
Richard Felkl | 03203d6 | 2017-11-01 17:57:32 +0100 | [diff] [blame] | 245 | checkResult(out, failOnError, output) |
Vasyl Saienko | e36ab7c | 2017-07-17 14:35:48 +0300 | [diff] [blame] | 246 | } |
Vasyl Saienko | 6a39621 | 2018-06-08 09:20:08 +0300 | [diff] [blame] | 247 | waitForMinion(out, minionRestartWaitTimeout) |
Martin Polreich | 1c77afa | 2017-07-18 11:27:02 +0200 | [diff] [blame] | 248 | return out |
Martin Polreich | 1c77afa | 2017-07-18 11:27:02 +0200 | [diff] [blame] | 249 | } else { |
| 250 | common.infoMsg("No Minions matched the target given, but 'optional' param was set to true - Pipeline continues. ") |
| 251 | } |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 252 | } |
| 253 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 254 | /** |
| 255 | * Run command on salt minion (salt cmd.run wrapper) |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 256 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 257 | * @param target Get pillar target |
| 258 | * @param cmd command |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 259 | * @param checkResponse test command success execution (default true) |
Jakub Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 260 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 261 | * @param output do you want to print output |
chnyda | 205a92b | 2018-01-11 17:07:32 +0100 | [diff] [blame] | 262 | * @param saltArgs additional salt args eq. ["runas=aptly"] |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 263 | * @return output of salt command |
| 264 | */ |
chnyda | 205a92b | 2018-01-11 17:07:32 +0100 | [diff] [blame] | 265 | def cmdRun(saltId, target, cmd, checkResponse = true, batch=null, output = true, saltArgs = []) { |
Tomáš Kukrál | 6c04bd0 | 2017-03-01 22:18:52 +0100 | [diff] [blame] | 266 | def common = new com.mirantis.mk.Common() |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 267 | def originalCmd = cmd |
Tomáš Kukrál | dfd4b49 | 2017-03-02 12:08:50 +0100 | [diff] [blame] | 268 | common.infoMsg("Running command ${cmd} on ${target}") |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 269 | if (checkResponse) { |
| 270 | cmd = cmd + " && echo Salt command execution success" |
| 271 | } |
chnyda | 205a92b | 2018-01-11 17:07:32 +0100 | [diff] [blame] | 272 | |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 273 | // add cmd name to salt args list |
chnyda | 205a92b | 2018-01-11 17:07:32 +0100 | [diff] [blame] | 274 | saltArgs << cmd |
| 275 | |
| 276 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.run', batch, saltArgs.reverse()) |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 277 | if (checkResponse) { |
| 278 | // iterate over all affected nodes and check success return code |
Jiri Broulik | 16e9ce7 | 2017-05-17 13:28:31 +0200 | [diff] [blame] | 279 | if (out["return"]){ |
| 280 | for(int i=0;i<out["return"].size();i++){ |
| 281 | def node = out["return"][i]; |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 282 | for(int j=0;j<node.size();j++){ |
| 283 | def nodeKey = node.keySet()[j] |
Martin Polreich | a2effb8 | 2018-08-01 11:35:11 +0200 | [diff] [blame] | 284 | if (node[nodeKey] instanceof String) { |
| 285 | if (!node[nodeKey].contains("Salt command execution success")) { |
| 286 | throw new Exception("Execution of cmd ${originalCmd} failed. Server returns: ${node[nodeKey]}") |
| 287 | } |
| 288 | } else if (node[nodeKey] instanceof Boolean) { |
| 289 | if (!node[nodeKey]) { |
| 290 | throw new Exception("Execution of cmd ${originalCmd} failed. Server returns: ${node[nodeKey]}") |
| 291 | } |
| 292 | } else { |
| 293 | throw new Exception("Execution of cmd ${originalCmd} failed. Server returns unexpected data type: ${node[nodeKey]}") |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | } |
Martin Polreich | a2effb8 | 2018-08-01 11:35:11 +0200 | [diff] [blame] | 297 | } else { |
Jakub Josef | 053df39 | 2017-05-03 15:51:05 +0200 | [diff] [blame] | 298 | throw new Exception("Salt Api response doesn't have return param!") |
| 299 | } |
| 300 | } |
Jiri Broulik | 16e9ce7 | 2017-05-17 13:28:31 +0200 | [diff] [blame] | 301 | if (output == true) { |
| 302 | printSaltCommandResult(out) |
| 303 | } |
| 304 | return out |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 305 | } |
| 306 | |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 307 | /** |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 308 | * Checks if salt minion is in a list of salt master's accepted keys |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 309 | * @usage minionPresent(saltId, 'I@salt:master', 'ntw', true, null, true, 200, 3) |
| 310 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 311 | * @param target Get pillar target |
| 312 | * @param minion_name unique identification of a minion in salt-key command output |
| 313 | * @param waitUntilPresent return after the minion becomes present (default true) |
| 314 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 315 | * @param output print salt command (default true) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 316 | * @param maxRetries finite number of iterations to check status of a command (default 200) |
| 317 | * @param answers how many minions should return (optional, default 1) |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 318 | * @return output of salt command |
| 319 | */ |
lmercl | 9418927 | 2018-06-01 11:03:46 +0200 | [diff] [blame] | 320 | def minionPresent(saltId, target, minion_name, waitUntilPresent = true, batch=null, output = true, maxRetries = 180, answers = 1) { |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 321 | minion_name = minion_name.replace("*", "") |
| 322 | def common = new com.mirantis.mk.Common() |
Dzmitry Stremkouski | 8a8d56b | 2018-05-01 12:20:04 +0200 | [diff] [blame] | 323 | common.infoMsg("Looking for minion: " + minion_name) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 324 | def cmd = 'salt-key | grep ' + minion_name |
| 325 | if (waitUntilPresent){ |
| 326 | def count = 0 |
| 327 | while(count < maxRetries) { |
Dzmitry Stremkouski | 5425d23 | 2018-06-07 00:46:00 +0200 | [diff] [blame] | 328 | try { |
| 329 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5) |
| 330 | if (output) { |
| 331 | printSaltCommandResult(out) |
| 332 | } |
| 333 | def valueMap = out["return"][0] |
| 334 | def result = valueMap.get(valueMap.keySet()[0]) |
| 335 | def resultsArray = result.tokenize("\n") |
| 336 | def size = resultsArray.size() |
| 337 | if (size >= answers) { |
| 338 | return out |
| 339 | } |
| 340 | count++ |
| 341 | sleep(time: 1000, unit: 'MILLISECONDS') |
| 342 | common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state") |
| 343 | } catch (Exception er) { |
| 344 | common.infoMsg('[WARNING]: runSaltCommand command read timeout within 5 seconds. You have very slow or broken environment') |
| 345 | } |
| 346 | } |
| 347 | } else { |
| 348 | try { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 349 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 350 | if (output) { |
| 351 | printSaltCommandResult(out) |
| 352 | } |
Dzmitry Stremkouski | 5425d23 | 2018-06-07 00:46:00 +0200 | [diff] [blame] | 353 | return out |
| 354 | } catch (Exception er) { |
| 355 | common.infoMsg('[WARNING]: runSaltCommand command read timeout within 5 seconds. You have very slow or broken environment') |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 356 | } |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 357 | } |
| 358 | // otherwise throw exception |
| 359 | common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.") |
| 360 | throw new Exception("${cmd} signals failure of status check!") |
| 361 | } |
| 362 | |
| 363 | /** |
Dzmitry Stremkouski | 8a8d56b | 2018-05-01 12:20:04 +0200 | [diff] [blame] | 364 | * Checks if salt minions are in a list of salt master's accepted keys by matching compound |
| 365 | * @usage minionsPresent(saltId, 'I@salt:master', 'I@salt:minion', true, null, true, 200, 3) |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 366 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 367 | * @param target Performs tests on this target node |
| 368 | * @param target_minions all targeted minions to test (for ex. I@salt:minion) |
| 369 | * @param waitUntilPresent return after the minion becomes present (default true) |
| 370 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 371 | * @param output print salt command (default true) |
| 372 | * @param maxRetries finite number of iterations to check status of a command (default 200) |
| 373 | * @param answers how many minions should return (optional, default 1) |
| 374 | * @return output of salt command |
| 375 | */ |
| 376 | def minionsPresent(saltId, target = 'I@salt:master', target_minions = '', waitUntilPresent = true, batch=null, output = true, maxRetries = 200, answers = 1) { |
Dzmitry Stremkouski | 8a8d56b | 2018-05-01 12:20:04 +0200 | [diff] [blame] | 377 | def target_hosts = getMinionsSorted(saltId, target_minions) |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 378 | for (t in target_hosts) { |
Dzmitry Stremkouski | 8a8d56b | 2018-05-01 12:20:04 +0200 | [diff] [blame] | 379 | def tgt = stripDomainName(t) |
| 380 | minionPresent(saltId, target, tgt, waitUntilPresent, batch, output, maxRetries, answers) |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * Checks if salt minions are in a list of salt master's accepted keys by matching a list |
| 386 | * @usage minionsPresentFromList(saltId, 'I@salt:master', ["cfg01.example.com", "bmk01.example.com"], true, null, true, 200, 3) |
| 387 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 388 | * @param target Performs tests on this target node |
| 389 | * @param target_minions list to test (for ex. ["cfg01.example.com", "bmk01.example.com"]) |
| 390 | * @param waitUntilPresent return after the minion becomes present (default true) |
| 391 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 392 | * @param output print salt command (default true) |
| 393 | * @param maxRetries finite number of iterations to check status of a command (default 200) |
| 394 | * @param answers how many minions should return (optional, default 1) |
| 395 | * @return output of salt command |
| 396 | */ |
| 397 | def minionsPresentFromList(saltId, target = 'I@salt:master', target_minions = [], waitUntilPresent = true, batch=null, output = true, maxRetries = 200, answers = 1) { |
| 398 | def common = new com.mirantis.mk.Common() |
| 399 | for (tgt in target_minions) { |
| 400 | common.infoMsg("Checking if minion " + tgt + " is present") |
| 401 | minionPresent(saltId, target, tgt, waitUntilPresent, batch, output, maxRetries, answers) |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 402 | } |
| 403 | } |
| 404 | |
| 405 | /** |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 406 | * You can call this function when salt-master already contains salt keys of the target_nodes |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 407 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 408 | * @param target Should always be salt-master |
| 409 | * @param target_nodes unique identification of a minion or group of salt minions |
| 410 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 411 | * @param wait timeout for the salt command if minions do not return (default 10) |
| 412 | * @param maxRetries finite number of iterations to check status of a command (default 200) |
| 413 | * @return output of salt command |
| 414 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 415 | def minionsReachable(saltId, target, target_nodes, batch=null, wait = 10, maxRetries = 200) { |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 416 | def common = new com.mirantis.mk.Common() |
| 417 | def cmd = "salt -t${wait} -C '${target_nodes}' test.ping" |
| 418 | common.infoMsg("Checking if all ${target_nodes} minions are reachable") |
| 419 | def count = 0 |
| 420 | while(count < maxRetries) { |
| 421 | Calendar timeout = Calendar.getInstance(); |
| 422 | timeout.add(Calendar.SECOND, wait); |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 423 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, wait) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 424 | Calendar current = Calendar.getInstance(); |
| 425 | if (current.getTime().before(timeout.getTime())) { |
| 426 | printSaltCommandResult(out) |
| 427 | return out |
| 428 | } |
| 429 | common.infoMsg("Not all of the targeted '${target_nodes}' minions returned yet. Waiting ...") |
| 430 | count++ |
| 431 | sleep(time: 500, unit: 'MILLISECONDS') |
| 432 | } |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | /** |
| 436 | * Run command on salt minion (salt cmd.run wrapper) |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 437 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 438 | * @param target Get pillar target |
| 439 | * @param cmd name of a service |
| 440 | * @param correct_state string that command must contain if status is in correct state (optional, default 'running') |
Jiri Broulik | cf1f233 | 2017-07-25 11:30:03 +0200 | [diff] [blame] | 441 | * @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 Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 442 | * @param waitUntilOk return after the minion becomes present (optional, default true) |
| 443 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 444 | * @param output print salt command (default true) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 445 | * @param maxRetries finite number of iterations to check status of a command (default 200) |
| 446 | * @param answers how many minions should return (optional, default 0) |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 447 | * @return output of salt command |
| 448 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 449 | def commandStatus(saltId, target, cmd, correct_state='running', find = true, waitUntilOk = true, batch=null, output = true, maxRetries = 200, answers = 0) { |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 450 | def common = new com.mirantis.mk.Common() |
| 451 | common.infoMsg("Checking if status of verification command ${cmd} on ${target} is in correct state") |
| 452 | if (waitUntilOk){ |
| 453 | def count = 0 |
| 454 | while(count < maxRetries) { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 455 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 456 | if (output) { |
| 457 | printSaltCommandResult(out) |
| 458 | } |
Jakub Josef | 115a78f | 2017-07-18 15:04:00 +0200 | [diff] [blame] | 459 | def resultMap = out["return"][0] |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 460 | def success = 0 |
| 461 | if (answers == 0){ |
| 462 | answers = resultMap.size() |
| 463 | } |
| 464 | for (int i=0;i<answers;i++) { |
| 465 | result = resultMap.get(resultMap.keySet()[i]) |
| 466 | // if the goal is to find some string in output of the command |
| 467 | if (find) { |
| 468 | if(result == null || result instanceof Boolean || result.isEmpty()) { result='' } |
| 469 | if (result.toLowerCase().contains(correct_state.toLowerCase())) { |
| 470 | success++ |
| 471 | if (success == answers) { |
| 472 | return out |
| 473 | } |
Jiri Broulik | d0c2757 | 2017-07-24 20:01:10 +0200 | [diff] [blame] | 474 | } |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 475 | // else the goal is to not find any string in output of the command |
| 476 | } else { |
| 477 | if(result instanceof String && result.isEmpty()) { |
| 478 | success++ |
| 479 | if (success == answers) { |
| 480 | return out |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 481 | } |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 482 | } |
| 483 | } |
| 484 | } |
| 485 | count++ |
| 486 | sleep(time: 500, unit: 'MILLISECONDS') |
| 487 | common.infoMsg("Waiting for ${cmd} on ${target} to be in correct state") |
| 488 | } |
| 489 | } else { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 490 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'cmd.shell', batch, [cmd], null, 5) |
Jiri Broulik | 71512bc | 2017-08-04 10:00:18 +0200 | [diff] [blame] | 491 | def resultMap = out["return"][0] |
| 492 | if (output) { |
| 493 | printSaltCommandResult(out) |
| 494 | } |
| 495 | for (int i=0;i<resultMap.size();i++) { |
| 496 | result = resultMap.get(resultMap.keySet()[i]) |
| 497 | // if the goal is to find some string in output of the command |
| 498 | if (find) { |
| 499 | if(result == null || result instanceof Boolean || result.isEmpty()) { result='' } |
| 500 | if (result.toLowerCase().contains(correct_state.toLowerCase())) { |
Jiri Broulik | d0c2757 | 2017-07-24 20:01:10 +0200 | [diff] [blame] | 501 | return out |
| 502 | } |
| 503 | |
| 504 | // else the goal is to not find any string in output of the command |
| 505 | } else { |
| 506 | if(result instanceof String && result.isEmpty()) { |
| 507 | return out |
| 508 | } |
| 509 | } |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 510 | } |
| 511 | } |
| 512 | // otherwise throw exception |
Jiri Broulik | d0c2757 | 2017-07-24 20:01:10 +0200 | [diff] [blame] | 513 | common.errorMsg("Status of command ${cmd} on ${target} failed, please check it.") |
Jiri Broulik | 2c69f3d | 2017-07-18 14:23:58 +0200 | [diff] [blame] | 514 | throw new Exception("${cmd} signals failure of status check!") |
| 515 | } |
| 516 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 517 | /** |
| 518 | * Perform complete salt sync between master and target |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 519 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 520 | * @param target Get pillar target |
| 521 | * @return output of salt command |
| 522 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 523 | def syncAll(saltId, target) { |
| 524 | return runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all') |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 525 | } |
| 526 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 527 | /** |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 528 | * Perform complete salt refresh between master and target |
| 529 | * Method will call saltutil.refresh_pillar, saltutil.refresh_grains and saltutil.sync_all |
| 530 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 531 | * @param target Get pillar target |
| 532 | * @return output of salt command |
| 533 | */ |
| 534 | def fullRefresh(saltId, target){ |
| 535 | runSaltProcessStep(saltId, target, 'saltutil.refresh_pillar', [], null, true) |
| 536 | runSaltProcessStep(saltId, target, 'saltutil.refresh_grains', [], null, true) |
| 537 | runSaltProcessStep(saltId, target, 'saltutil.sync_all', [], null, true) |
| 538 | } |
| 539 | |
| 540 | /** |
| 541 | * Enforce highstate on given targets |
| 542 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 543 | * @param target Highstate enforcing target |
| 544 | * @param excludedStates states which will be excluded from main state (default empty string) |
| 545 | * @param output print output (optional, default true) |
| 546 | * @param failOnError throw exception on salt state result:false (optional, default true) |
| 547 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
| 548 | * @param saltArgs additional salt args eq. ["runas=aptly", exclude="opencontrail.database"] |
| 549 | * @return output of salt command |
| 550 | */ |
| 551 | def enforceHighstateWithExclude(saltId, target, excludedStates = "", output = false, failOnError = true, batch = null, saltArgs = []) { |
| 552 | saltArgs << "exclude=${excludedStates}" |
| 553 | return enforceHighstate(saltId, target, output, failOnError, batch, saltArgs) |
| 554 | } |
| 555 | /** |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 556 | * Enforce highstate on given targets |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 557 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 558 | * @param target Highstate enforcing target |
| 559 | * @param output print output (optional, default true) |
| 560 | * @param failOnError throw exception on salt state result:false (optional, default true) |
Jakub Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 561 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 562 | * @return output of salt command |
| 563 | */ |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 564 | def enforceHighstate(saltId, target, output = false, failOnError = true, batch = null, saltArgs = []) { |
Petr Jediný | 30be703 | 2018-05-29 18:22:46 +0200 | [diff] [blame] | 565 | def out = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch, saltArgs) |
Alexander Noskov | 657ccfc | 2017-07-14 11:35:52 +0000 | [diff] [blame] | 566 | def common = new com.mirantis.mk.Common() |
| 567 | |
Marek Celoud | 6336611 | 2017-07-25 17:27:24 +0200 | [diff] [blame] | 568 | common.infoMsg("Running state highstate on ${target}") |
Alexander Noskov | 657ccfc | 2017-07-14 11:35:52 +0000 | [diff] [blame] | 569 | |
Jakub Josef | 374beb7 | 2017-04-27 15:45:09 +0200 | [diff] [blame] | 570 | checkResult(out, failOnError, output) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 571 | return out |
| 572 | } |
| 573 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 574 | /** |
Ales Komarek | 5276ebe | 2017-03-16 08:46:34 +0100 | [diff] [blame] | 575 | * Get running minions IDs according to the target |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 576 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Ales Komarek | 5276ebe | 2017-03-16 08:46:34 +0100 | [diff] [blame] | 577 | * @param target Get minions target |
| 578 | * @return list of active minions fitin |
| 579 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 580 | def getMinions(saltId, target) { |
| 581 | def minionsRaw = runSaltCommand(saltId, 'local', ['expression': target, 'type': 'compound'], 'test.ping') |
Ales Komarek | 5276ebe | 2017-03-16 08:46:34 +0100 | [diff] [blame] | 582 | return new ArrayList<String>(minionsRaw['return'][0].keySet()) |
| 583 | } |
| 584 | |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 585 | /** |
| 586 | * Get sorted running minions IDs according to the target |
| 587 | * @param saltId Salt Connection object or pepperEnv |
| 588 | * @param target Get minions target |
| 589 | * @return list of sorted active minions fitin |
| 590 | */ |
| 591 | def getMinionsSorted(saltId, target) { |
| 592 | return getMinions(saltId, target).sort() |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * Get first out of running minions IDs according to the target |
| 597 | * @param saltId Salt Connection object or pepperEnv |
| 598 | * @param target Get minions target |
| 599 | * @return first of active minions fitin |
| 600 | */ |
| 601 | def getFirstMinion(saltId, target) { |
| 602 | def minionsSorted = getMinionsSorted(saltId, target) |
Dmitry Ukov | d72cd2a | 2018-09-04 17:31:46 +0400 | [diff] [blame] | 603 | return minionsSorted[0] |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | /** |
| 607 | * Get running salt minions IDs without it's domain name part and its numbering identifications |
| 608 | * @param saltId Salt Connection object or pepperEnv |
| 609 | * @param target Get minions target |
| 610 | * @return list of active minions fitin without it's domain name part name numbering |
| 611 | */ |
| 612 | def getMinionsGeneralName(saltId, target) { |
| 613 | def minionsSorted = getMinionsSorted(saltId, target) |
| 614 | return stripDomainName(minionsSorted[0]).replaceAll('\\d+$', "") |
| 615 | } |
| 616 | |
| 617 | /** |
| 618 | * Get domain name of the env |
| 619 | * @param saltId Salt Connection object or pepperEnv |
| 620 | * @return domain name |
| 621 | */ |
| 622 | def getDomainName(saltId) { |
| 623 | return getReturnValues(getPillar(saltId, 'I@salt:master', '_param:cluster_domain')) |
| 624 | } |
| 625 | |
| 626 | /** |
| 627 | * Remove domain name from Salt minion ID |
| 628 | * @param name String of Salt minion ID |
| 629 | * @return Salt minion ID without its domain name |
| 630 | */ |
| 631 | def stripDomainName(name) { |
| 632 | return name.split("\\.")[0] |
| 633 | } |
| 634 | |
| 635 | /** |
| 636 | * Gets return values of a salt command |
| 637 | * @param output String of Salt minion ID |
| 638 | * @return Return values of a salt command |
| 639 | */ |
| 640 | def getReturnValues(output) { |
| 641 | if(output.containsKey("return") && !output.get("return").isEmpty()) { |
| 642 | return output['return'][0].values()[0] |
| 643 | } |
| 644 | def common = new com.mirantis.mk.Common() |
| 645 | common.errorMsg('output does not contain return key') |
| 646 | return '' |
| 647 | } |
| 648 | |
| 649 | /** |
| 650 | * Get minion ID of one of KVM nodes |
| 651 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 652 | * @return Salt minion ID of one of KVM nodes in env |
| 653 | */ |
| 654 | def getKvmMinionId(saltId) { |
| 655 | return getReturnValues(getGrain(saltId, 'I@salt:control', 'id')).values()[0] |
| 656 | } |
| 657 | |
| 658 | /** |
| 659 | * Get Salt minion ID of KVM node hosting 'name' VM |
| 660 | * @param saltId Salt Connection object or pepperEnv |
| 661 | * @param name Name of the VM (for ex. ctl01) |
| 662 | * @return Salt minion ID of KVM node hosting 'name' VM |
| 663 | */ |
Jiri Broulik | d2a5055 | 2018-04-25 17:17:59 +0200 | [diff] [blame] | 664 | def getNodeProvider(saltId, nodeName) { |
| 665 | def salt = new com.mirantis.mk.Salt() |
| 666 | def common = new com.mirantis.mk.Common() |
| 667 | def kvms = salt.getMinions(saltId, 'I@salt:control') |
| 668 | for (kvm in kvms) { |
| 669 | try { |
| 670 | vms = salt.getReturnValues(salt.runSaltProcessStep(saltId, kvm, 'virt.list_domains', [], null, true)) |
| 671 | if (vms.toString().contains(nodeName)) { |
| 672 | return kvm |
| 673 | } |
| 674 | } catch (Exception er) { |
| 675 | common.infoMsg("${nodeName} not present on ${kvm}") |
| 676 | } |
| 677 | } |
Jiri Broulik | f8f9694 | 2018-02-15 10:03:42 +0100 | [diff] [blame] | 678 | } |
| 679 | |
Ales Komarek | 5276ebe | 2017-03-16 08:46:34 +0100 | [diff] [blame] | 680 | /** |
Tomáš Kukrál | b12ff9f | 2017-07-12 12:32:34 +0200 | [diff] [blame] | 681 | * Test if there are any minions to target |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 682 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Tomáš Kukrál | b12ff9f | 2017-07-12 12:32:34 +0200 | [diff] [blame] | 683 | * @param target Target to test |
vrovachev | 1c4770b | 2017-07-05 13:25:21 +0400 | [diff] [blame] | 684 | * @return bool indicating if target was succesful |
Tomáš Kukrál | b12ff9f | 2017-07-12 12:32:34 +0200 | [diff] [blame] | 685 | */ |
| 686 | |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 687 | def testTarget(saltId, target) { |
| 688 | return getMinions(saltId, target).size() > 0 |
Tomáš Kukrál | b12ff9f | 2017-07-12 12:32:34 +0200 | [diff] [blame] | 689 | } |
| 690 | |
| 691 | /** |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 692 | * Generates node key using key.gen_accept call |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 693 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 694 | * @param target Key generating target |
| 695 | * @param host Key generating host |
| 696 | * @param keysize generated key size (optional, default 4096) |
| 697 | * @return output of salt command |
| 698 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 699 | def generateNodeKey(saltId, target, host, keysize = 4096) { |
| 700 | return runSaltCommand(saltId, 'wheel', target, 'key.gen_accept', [host], ['keysize': keysize]) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 701 | } |
| 702 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 703 | /** |
Jakub Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 704 | * Generates node reclass metadata |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 705 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 706 | * @param target Metadata generating target |
| 707 | * @param host Metadata generating host |
| 708 | * @param classes Reclass classes |
| 709 | * @param parameters Reclass parameters |
| 710 | * @return output of salt command |
| 711 | */ |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 712 | def generateNodeMetadata(saltId, target, host, classes, parameters) { |
| 713 | return runSaltCommand(saltId, 'local', target, 'reclass.node_create', [host, '_generated'], ['classes': classes, 'parameters': parameters]) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 714 | } |
| 715 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 716 | /** |
| 717 | * Run salt orchestrate on given targets |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 718 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 719 | * @param target Orchestration target |
| 720 | * @param orchestrate Salt orchestrate params |
Dzmitry Stremkouski | dd020d9 | 2018-07-22 12:01:07 +0200 | [diff] [blame] | 721 | * @param kwargs Salt orchestrate params |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 722 | * @return output of salt command |
| 723 | */ |
Dzmitry Stremkouski | dd020d9 | 2018-07-22 12:01:07 +0200 | [diff] [blame] | 724 | def orchestrateSystem(saltId, target, orchestrate=[], kwargs = null) { |
Oleksii Grudev | 9e1d97a | 2018-06-29 16:04:30 +0300 | [diff] [blame] | 725 | //Since the runSaltCommand uses "arg" (singular) for "runner" client this won`t work correctly on old salt 2016 |
| 726 | //cause this version of salt used "args" (plural) for "runner" client, see following link for reference: |
| 727 | //https://github.com/saltstack/salt/pull/32938 |
Oleksii Grudev | 0c09838 | 2018-08-08 16:16:38 +0300 | [diff] [blame] | 728 | def common = new com.mirantis.mk.Common() |
| 729 | def result = runSaltCommand(saltId, 'runner', target, 'state.orchestrate', true, orchestrate, kwargs, 7200, 7200) |
| 730 | if(result != null){ |
| 731 | if(result['return']){ |
| 732 | def retcode = result['return'][0].get('retcode') |
| 733 | if (retcode != 0) { |
| 734 | throw new Exception("Orchestration state failed while running: "+orchestrate) |
| 735 | }else{ |
| 736 | common.infoMsg("Orchestrate state "+orchestrate+" succeeded") |
| 737 | } |
| 738 | }else{ |
| 739 | common.errorMsg("Salt result has no return attribute! Result: ${result}") |
| 740 | } |
| 741 | }else{ |
| 742 | common.errorMsg("Cannot check salt result, given result is null") |
| 743 | } |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 744 | } |
| 745 | |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 746 | /** |
Dzmitry Stremkouski | b544070 | 2018-07-22 13:00:05 +0200 | [diff] [blame] | 747 | * Run salt pre or post orchestrate tasks |
| 748 | * |
| 749 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
| 750 | * @param pillar_tree Reclass pillar that has orchestrate pillar for desired stage |
| 751 | * @param extra_tgt Extra targets for compound |
| 752 | * |
| 753 | * @return output of salt command |
| 754 | */ |
| 755 | def orchestratePrePost(saltId, pillar_tree, extra_tgt = '') { |
| 756 | |
| 757 | def common = new com.mirantis.mk.Common() |
| 758 | def salt = new com.mirantis.mk.Salt() |
| 759 | def compound = 'I@' + pillar_tree + " " + extra_tgt |
| 760 | |
| 761 | common.infoMsg("Refreshing pillars") |
| 762 | runSaltProcessStep(saltId, '*', 'saltutil.refresh_pillar', [], null, true) |
| 763 | |
| 764 | common.infoMsg("Looking for orchestrate pillars") |
| 765 | if (salt.testTarget(saltId, compound)) { |
| 766 | for ( node in salt.getMinionsSorted(saltId, compound) ) { |
| 767 | def pillar = salt.getPillar(saltId, node, pillar_tree) |
| 768 | if ( !pillar['return'].isEmpty() ) { |
| 769 | for ( orch_id in pillar['return'][0].values() ) { |
| 770 | def orchestrator = orch_id.values()['orchestrator'] |
| 771 | def orch_enabled = orch_id.values()['enabled'] |
| 772 | if ( orch_enabled ) { |
| 773 | common.infoMsg("Orchestrating: ${orchestrator}") |
| 774 | salt.printSaltCommandResult(salt.orchestrateSystem(saltId, ['expression': node], [orchestrator])) |
| 775 | } |
| 776 | } |
| 777 | } |
| 778 | } |
| 779 | } |
| 780 | } |
| 781 | |
| 782 | /** |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 783 | * Run salt process step |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 784 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 785 | * @param tgt Salt process step target |
| 786 | * @param fun Salt process step function |
| 787 | * @param arg process step arguments (optional, default []) |
Jakub Josef | 2f25cf2 | 2017-03-28 13:34:57 +0200 | [diff] [blame] | 788 | * @param batch salt batch parameter integer or string with percents (optional, default null - disable batch) |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 789 | * @param output print output (optional, default true) |
Jiri Broulik | 48544be | 2017-06-14 18:33:54 +0200 | [diff] [blame] | 790 | * @param timeout Additional argument salt api timeout |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 791 | * @return output of salt command |
| 792 | */ |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 793 | def runSaltProcessStep(saltId, tgt, fun, arg = [], batch = null, output = true, timeout = -1, kwargs = null) { |
Tomáš Kukrál | 6c04bd0 | 2017-03-01 22:18:52 +0100 | [diff] [blame] | 794 | def common = new com.mirantis.mk.Common() |
Jiri Broulik | 48544be | 2017-06-14 18:33:54 +0200 | [diff] [blame] | 795 | def salt = new com.mirantis.mk.Salt() |
Tomáš Kukrál | adb4ecd | 2017-03-02 10:06:36 +0100 | [diff] [blame] | 796 | def out |
| 797 | |
Marek Celoud | 6336611 | 2017-07-25 17:27:24 +0200 | [diff] [blame] | 798 | common.infoMsg("Running step ${fun} ${arg} on ${tgt}") |
Tomáš Kukrál | 6c04bd0 | 2017-03-01 22:18:52 +0100 | [diff] [blame] | 799 | |
Filip Pytloun | f0435c0 | 2017-03-02 17:48:54 +0100 | [diff] [blame] | 800 | if (batch == true) { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 801 | out = runSaltCommand(saltId, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg, kwargs, timeout) |
Tomáš Kukrál | adb4ecd | 2017-03-02 10:06:36 +0100 | [diff] [blame] | 802 | } else { |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 803 | out = runSaltCommand(saltId, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg, kwargs, timeout) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 804 | } |
Tomáš Kukrál | adb4ecd | 2017-03-02 10:06:36 +0100 | [diff] [blame] | 805 | |
Tomáš Kukrál | f5dda64 | 2017-03-02 14:22:59 +0100 | [diff] [blame] | 806 | if (output == true) { |
Jiri Broulik | 48544be | 2017-06-14 18:33:54 +0200 | [diff] [blame] | 807 | salt.printSaltCommandResult(out) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 808 | } |
Jiri Broulik | ae19c26 | 2017-05-16 19:06:52 +0200 | [diff] [blame] | 809 | return out |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 810 | } |
| 811 | |
| 812 | /** |
| 813 | * Check result for errors and throw exception if any found |
| 814 | * |
| 815 | * @param result Parsed response of Salt API |
Jakub Josef | 8021c00 | 2017-03-27 15:41:28 +0200 | [diff] [blame] | 816 | * @param failOnError Do you want to throw exception if salt-call fails (optional, default true) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 817 | * @param printResults Do you want to print salt results (optional, default true) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 818 | * @param printOnlyChanges If true (default), print only changed resources |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 819 | * @param disableAskOnError Flag for disabling ASK_ON_ERROR feature (optional, default false) |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 820 | */ |
Jakub Josef | 432e9d9 | 2018-02-06 18:28:37 +0100 | [diff] [blame] | 821 | def checkResult(result, failOnError = true, printResults = true, printOnlyChanges = true, disableAskOnError = false) { |
Jakub Josef | 5ade54c | 2017-03-10 16:14:01 +0100 | [diff] [blame] | 822 | def common = new com.mirantis.mk.Common() |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 823 | if(result != null){ |
| 824 | if(result['return']){ |
| 825 | for (int i=0;i<result['return'].size();i++) { |
| 826 | def entry = result['return'][i] |
| 827 | if (!entry) { |
| 828 | if (failOnError) { |
| 829 | throw new Exception("Salt API returned empty response: ${result}") |
| 830 | } else { |
| 831 | common.errorMsg("Salt API returned empty response: ${result}") |
Jakub Josef | ece32af | 2017-03-14 19:20:08 +0100 | [diff] [blame] | 832 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 833 | } |
| 834 | for (int j=0;j<entry.size();j++) { |
| 835 | def nodeKey = entry.keySet()[j] |
| 836 | def node=entry[nodeKey] |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 837 | def outputResources = [] |
Jakub Josef | 4714594 | 2018-04-04 17:30:38 +0200 | [diff] [blame] | 838 | def errorResources = [] |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 839 | common.infoMsg("Node ${nodeKey} changes:") |
| 840 | if(node instanceof Map || node instanceof List){ |
| 841 | for (int k=0;k<node.size();k++) { |
| 842 | def resource; |
| 843 | def resKey; |
| 844 | if(node instanceof Map){ |
| 845 | resKey = node.keySet()[k] |
Richard Felkl | d9476ac | 2018-07-12 19:01:33 +0200 | [diff] [blame] | 846 | if (resKey == "retcode") |
| 847 | continue |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 848 | }else if(node instanceof List){ |
| 849 | resKey = k |
| 850 | } |
| 851 | resource = node[resKey] |
Jakub Josef | c4c4020 | 2017-04-28 12:04:24 +0200 | [diff] [blame] | 852 | // print |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 853 | if(printResults){ |
| 854 | if(resource instanceof Map && resource.keySet().contains("result")){ |
| 855 | //clean unnesaccary fields |
| 856 | if(resource.keySet().contains("__run_num__")){ |
| 857 | resource.remove("__run_num__") |
| 858 | } |
| 859 | if(resource.keySet().contains("__id__")){ |
| 860 | resource.remove("__id__") |
| 861 | } |
| 862 | if(resource.keySet().contains("pchanges")){ |
| 863 | resource.remove("pchanges") |
| 864 | } |
| 865 | if(!resource["result"] || (resource["result"] instanceof String && resource["result"] != "true")){ |
| 866 | if(resource["result"] != null){ |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 867 | outputResources.add(String.format("Resource: %s\n\u001B[31m%s\u001B[0m", resKey, common.prettify(resource))) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 868 | }else{ |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 869 | outputResources.add(String.format("Resource: %s\n\u001B[33m%s\u001B[0m", resKey, common.prettify(resource))) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 870 | } |
| 871 | }else{ |
| 872 | if(!printOnlyChanges || resource.changes.size() > 0){ |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 873 | outputResources.add(String.format("Resource: %s\n\u001B[32m%s\u001B[0m", resKey, common.prettify(resource))) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 874 | } |
| 875 | } |
| 876 | }else{ |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 877 | outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", resKey, common.prettify(resource))) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 878 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 879 | } |
Jakub Josef | c4c4020 | 2017-04-28 12:04:24 +0200 | [diff] [blame] | 880 | common.debugMsg("checkResult: checking resource: ${resource}") |
| 881 | if(resource instanceof String || (resource["result"] != null && !resource["result"]) || (resource["result"] instanceof String && resource["result"] == "false")){ |
Jakub Josef | 4714594 | 2018-04-04 17:30:38 +0200 | [diff] [blame] | 882 | errorResources.add(resource) |
Jakub Josef | c4c4020 | 2017-04-28 12:04:24 +0200 | [diff] [blame] | 883 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 884 | } |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 885 | }else if(node!=null && node!=""){ |
Jakub Josef | 62f6c84 | 2017-08-04 16:36:35 +0200 | [diff] [blame] | 886 | outputResources.add(String.format("Resource: %s\n\u001B[36m%s\u001B[0m", nodeKey, common.prettify(node))) |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 887 | } |
| 888 | if(printResults && !outputResources.isEmpty()){ |
Jakub Josef | 4714594 | 2018-04-04 17:30:38 +0200 | [diff] [blame] | 889 | println outputResources.stream().collect(Collectors.joining("\n")) |
| 890 | } |
| 891 | if(!errorResources.isEmpty()){ |
| 892 | for(resource in errorResources){ |
| 893 | def prettyResource = common.prettify(resource) |
| 894 | if (!disableAskOnError && env["ASK_ON_ERROR"] && env["ASK_ON_ERROR"] == "true") { |
| 895 | timeout(time:1, unit:'HOURS') { |
| 896 | input message: "False result on ${nodeKey} found, resource ${prettyResource}. \nDo you want to continue?" |
| 897 | } |
| 898 | } else { |
| 899 | def errorMsg = "Salt state on node ${nodeKey} failed. Resource: ${prettyResource}" |
| 900 | if (failOnError) { |
| 901 | throw new Exception(errorMsg) |
| 902 | } else { |
| 903 | common.errorMsg(errorMsg) |
| 904 | } |
| 905 | } |
| 906 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 907 | } |
| 908 | } |
Jakub Josef | 52f69f7 | 2017-03-14 15:18:08 +0100 | [diff] [blame] | 909 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 910 | }else{ |
| 911 | common.errorMsg("Salt result hasn't return attribute! Result: ${result}") |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 912 | } |
Jakub Josef | 52f69f7 | 2017-03-14 15:18:08 +0100 | [diff] [blame] | 913 | }else{ |
Jakub Josef | a87941c | 2017-04-20 17:14:58 +0200 | [diff] [blame] | 914 | common.errorMsg("Cannot check salt result, given result is null") |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 915 | } |
| 916 | } |
| 917 | |
| 918 | /** |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 919 | * Parse salt API output to check minion restart and wait some time to be sure minion is up. |
| 920 | * See https://mirantis.jira.com/browse/PROD-16258 for more details |
| 921 | * TODO: change sleep to more tricky procedure. |
| 922 | * |
| 923 | * @param result Parsed response of Salt API |
| 924 | */ |
Vasyl Saienko | 6a39621 | 2018-06-08 09:20:08 +0300 | [diff] [blame] | 925 | def waitForMinion(result, minionRestartWaitTimeout=10) { |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 926 | def common = new com.mirantis.mk.Common() |
Oleg Iurchenko | 3eedc78 | 2017-12-12 11:49:29 +0200 | [diff] [blame] | 927 | //In order to prevent multiple sleeps use bool variable to catch restart for any minion. |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 928 | def isMinionRestarted = false |
Oleg Iurchenko | 3eedc78 | 2017-12-12 11:49:29 +0200 | [diff] [blame] | 929 | if(result != null){ |
| 930 | if(result['return']){ |
| 931 | for (int i=0;i<result['return'].size();i++) { |
| 932 | def entry = result['return'][i] |
| 933 | // exit in case of empty response. |
| 934 | if (!entry) { |
| 935 | return |
| 936 | } |
| 937 | // Loop for nodes |
| 938 | for (int j=0;j<entry.size();j++) { |
| 939 | def nodeKey = entry.keySet()[j] |
| 940 | def node=entry[nodeKey] |
| 941 | if(node instanceof Map || node instanceof List){ |
| 942 | // Loop for node resources |
| 943 | for (int k=0;k<node.size();k++) { |
| 944 | def resource; |
| 945 | def resKey; |
| 946 | if(node instanceof Map){ |
| 947 | resKey = node.keySet()[k] |
| 948 | }else if(node instanceof List){ |
| 949 | resKey = k |
| 950 | } |
| 951 | resource = node[resKey] |
Jakub Josef | fb9996d | 2018-04-10 14:05:31 +0200 | [diff] [blame] | 952 | // try to find if salt_minion service was restarted |
| 953 | if(resKey instanceof String && resKey.contains("salt_minion_service_restart") && resource instanceof Map && resource.keySet().contains("result")){ |
Oleg Iurchenko | 3eedc78 | 2017-12-12 11:49:29 +0200 | [diff] [blame] | 954 | if((resource["result"] instanceof Boolean && resource["result"]) || (resource["result"] instanceof String && resource["result"] == "true")){ |
| 955 | if(resource.changes.size() > 0){ |
| 956 | isMinionRestarted=true |
| 957 | } |
| 958 | } |
| 959 | } |
| 960 | } |
| 961 | } |
| 962 | } |
| 963 | } |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 964 | } |
| 965 | } |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 966 | if (isMinionRestarted){ |
Vasyl Saienko | 6a39621 | 2018-06-08 09:20:08 +0300 | [diff] [blame] | 967 | common.infoMsg("Salt minion service restart detected. Sleep ${minionRestartWaitTimeout} seconds to wait minion restart") |
| 968 | sleep(minionRestartWaitTimeout) |
Oleg Iurchenko | 7eb2150 | 2017-11-28 18:53:43 +0200 | [diff] [blame] | 969 | } |
| 970 | } |
| 971 | |
| 972 | /** |
Jakub Josef | 7852fe1 | 2017-03-15 16:02:41 +0100 | [diff] [blame] | 973 | * Print salt command run results in human-friendly form |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 974 | * |
| 975 | * @param result Parsed response of Salt API |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 976 | */ |
Filip Pytloun | d2f1bbe | 2017-02-27 19:03:51 +0100 | [diff] [blame] | 977 | def printSaltCommandResult(result) { |
Jakub Josef | 871bf15 | 2017-03-14 20:13:41 +0100 | [diff] [blame] | 978 | def common = new com.mirantis.mk.Common() |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 979 | if(result != null){ |
| 980 | if(result['return']){ |
| 981 | for (int i=0; i<result['return'].size(); i++) { |
| 982 | def entry = result['return'][i] |
| 983 | for (int j=0; j<entry.size(); j++) { |
| 984 | common.debugMsg("printSaltCommandResult: printing salt command entry: ${entry}") |
| 985 | def nodeKey = entry.keySet()[j] |
| 986 | def node=entry[nodeKey] |
Jakub Josef | bceaa32 | 2017-06-13 18:28:27 +0200 | [diff] [blame] | 987 | common.infoMsg(String.format("Node %s changes:\n%s",nodeKey, common.prettify(node))) |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 988 | } |
Jakub Josef | 8a715bf | 2017-03-14 21:39:01 +0100 | [diff] [blame] | 989 | } |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 990 | }else{ |
| 991 | common.errorMsg("Salt result hasn't return attribute! Result: ${result}") |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 992 | } |
Jakub Josef | 8a715bf | 2017-03-14 21:39:01 +0100 | [diff] [blame] | 993 | }else{ |
Jakub Josef | d9afd0e | 2017-03-15 19:19:23 +0100 | [diff] [blame] | 994 | common.errorMsg("Cannot print salt command result, given result is null") |
Jakub Josef | 52f69f7 | 2017-03-14 15:18:08 +0100 | [diff] [blame] | 995 | } |
Jakub Josef | 79ecec3 | 2017-02-17 14:36:28 +0100 | [diff] [blame] | 996 | } |
Tomáš Kukrál | b12eedd | 2017-04-21 10:45:13 +0200 | [diff] [blame] | 997 | |
| 998 | |
| 999 | /** |
| 1000 | * Return content of file target |
| 1001 | * |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 1002 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Tomáš Kukrál | b12eedd | 2017-04-21 10:45:13 +0200 | [diff] [blame] | 1003 | * @param target Compound target (should target only one host) |
| 1004 | * @param file File path to read (/etc/hosts for example) |
| 1005 | */ |
| 1006 | |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 1007 | def getFileContent(saltId, target, file) { |
| 1008 | result = cmdRun(saltId, target, "cat ${file}") |
Tomáš Kukrál | f1a692a | 2017-08-11 13:29:28 +0200 | [diff] [blame] | 1009 | return result['return'][0].values()[0].replaceAll('Salt command execution success','') |
Tomáš Kukrál | b12eedd | 2017-04-21 10:45:13 +0200 | [diff] [blame] | 1010 | } |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1011 | |
| 1012 | /** |
| 1013 | * Set override parameters in Salt cluster metadata |
| 1014 | * |
chnyda | a0dbb25 | 2017-10-05 10:46:09 +0200 | [diff] [blame] | 1015 | * @param saltId Salt Connection object or pepperEnv (the command will be sent using the selected method) |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1016 | * @param salt_overrides YAML formatted string containing key: value, one per line |
Matthew Mosesohn | e564684 | 2017-07-19 16:54:57 +0300 | [diff] [blame] | 1017 | * @param reclass_dir Directory where Reclass git repo is located |
Dzmitry Stremkouski | b544070 | 2018-07-22 13:00:05 +0200 | [diff] [blame] | 1018 | * @param extra_tgt Extra targets for compound |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1019 | */ |
| 1020 | |
Oleh Hryhorov | 5f96e09 | 2018-06-22 18:37:08 +0300 | [diff] [blame] | 1021 | def setSaltOverrides(saltId, salt_overrides, reclass_dir="/srv/salt/reclass", extra_tgt = '') { |
Tomáš Kukrál | f178f05 | 2017-07-11 11:31:00 +0200 | [diff] [blame] | 1022 | def common = new com.mirantis.mk.Common() |
Mykyta Karpin | 1c165e2 | 2017-08-22 18:27:01 +0300 | [diff] [blame] | 1023 | def salt_overrides_map = readYaml text: salt_overrides |
Tomáš Kukrál | 243cf84 | 2017-07-11 13:11:56 +0200 | [diff] [blame] | 1024 | for (entry in common.entries(salt_overrides_map)) { |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1025 | def key = entry[0] |
| 1026 | def value = entry[1] |
| 1027 | |
| 1028 | common.debugMsg("Set salt override ${key}=${value}") |
Oleh Hryhorov | 5f96e09 | 2018-06-22 18:37:08 +0300 | [diff] [blame] | 1029 | runSaltProcessStep(saltId, "I@salt:master ${extra_tgt}", 'reclass.cluster_meta_set', [key, value], false) |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1030 | } |
Oleh Hryhorov | 5f96e09 | 2018-06-22 18:37:08 +0300 | [diff] [blame] | 1031 | runSaltProcessStep(saltId, "I@salt:master ${extra_tgt}", 'cmd.run', ["git -C ${reclass_dir} update-index --skip-worktree classes/cluster/overrides.yml"]) |
Matthew Mosesohn | 9e88085 | 2017-07-04 21:17:53 +0300 | [diff] [blame] | 1032 | } |
Oleg Grigorov | bec4558 | 2017-09-12 20:29:24 +0300 | [diff] [blame] | 1033 | |
| 1034 | /** |
| 1035 | * Execute salt commands via salt-api with |
| 1036 | * CLI client salt-pepper |
| 1037 | * |
| 1038 | * @param data Salt command map |
| 1039 | * @param venv Path to virtualenv with |
| 1040 | */ |
| 1041 | |
| 1042 | def runPepperCommand(data, venv) { |
Jakub Josef | 03d4d5a | 2017-12-20 16:35:09 +0100 | [diff] [blame] | 1043 | def common = new com.mirantis.mk.Common() |
Oleg Grigorov | bec4558 | 2017-09-12 20:29:24 +0300 | [diff] [blame] | 1044 | def python = new com.mirantis.mk.Python() |
| 1045 | def dataStr = new groovy.json.JsonBuilder(data).toString() |
chnyda | 4901a04 | 2017-11-16 12:14:56 +0100 | [diff] [blame] | 1046 | |
Jakub Josef | a2491ad | 2018-01-15 16:26:27 +0100 | [diff] [blame] | 1047 | def pepperCmdFile = "${venv}/pepper-cmd.json" |
| 1048 | writeFile file: pepperCmdFile, text: dataStr |
| 1049 | def pepperCmd = "pepper -c ${venv}/pepperrc --make-token -x ${venv}/.peppercache --json-file ${pepperCmdFile}" |
Oleg Grigorov | bec4558 | 2017-09-12 20:29:24 +0300 | [diff] [blame] | 1050 | |
| 1051 | if (venv) { |
Jakub Josef | e2f4ebb | 2018-01-15 16:11:51 +0100 | [diff] [blame] | 1052 | output = python.runVirtualenvCommand(venv, pepperCmd, true) |
Oleg Grigorov | bec4558 | 2017-09-12 20:29:24 +0300 | [diff] [blame] | 1053 | } else { |
| 1054 | echo("[Command]: ${pepperCmd}") |
| 1055 | output = sh ( |
| 1056 | script: pepperCmd, |
| 1057 | returnStdout: true |
| 1058 | ).trim() |
| 1059 | } |
| 1060 | |
Jakub Josef | 37cd497 | 2018-02-01 16:25:25 +0100 | [diff] [blame] | 1061 | def outputObj |
| 1062 | try { |
| 1063 | outputObj = new groovy.json.JsonSlurperClassic().parseText(output) |
| 1064 | } catch(Exception e) { |
| 1065 | common.errorMsg("Parsing Salt API JSON response failed! Response: " + output) |
| 1066 | throw e |
| 1067 | } |
| 1068 | return outputObj |
Oleg Grigorov | bec4558 | 2017-09-12 20:29:24 +0300 | [diff] [blame] | 1069 | } |