blob: 5bcdd1e75e38bb61525d96b7fa5b5b8ee8944675 [file] [log] [blame]
Jakub Josef79ecec32017-02-17 14:36:28 +01001package com.mirantis.mk
2
3/**
4 * Salt functions
5 *
6*/
7
8/**
9 * Salt connection and context parameters
10 *
11 * @param url Salt API server URL
12 * @param credentialsID ID of credentials store entry
13 */
14def connection(url, credentialsId = "salt") {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +010015 def common = new com.mirantis.mk.Common()
Jakub Josef79ecec32017-02-17 14:36:28 +010016 params = [
17 "url": url,
18 "credentialsId": credentialsId,
19 "authToken": null,
20 "creds": common.getCredentials(credentialsId)
21 ]
22 params["authToken"] = saltLogin(params)
23
24 return params
25}
26
27/**
28 * Login to Salt API, return auth token
29 *
30 * @param master Salt connection object
31 */
32def saltLogin(master) {
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010033 def http = new com.mirantis.mk.Http()
Jakub Josef79ecec32017-02-17 14:36:28 +010034 data = [
35 'username': master.creds.username,
36 'password': master.creds.password.toString(),
37 'eauth': 'pam'
38 ]
Tomáš Kukrál7bec0532017-02-20 15:39:31 +010039 authToken = http.restGet(master, '/login', data)['return'][0]['token']
Jakub Josef79ecec32017-02-17 14:36:28 +010040 return authToken
41}
42
43/**
44 * Run action using Salt API
45 *
46 * @param master Salt connection object
47 * @param client Client type
48 * @param target Target specification, eg. for compound matches by Pillar
49 * data: ['expression': 'I@openssh:server', 'type': 'compound'])
50 * @param function Function to execute (eg. "state.sls")
51 * @param batch
52 * @param args Additional arguments to function
53 * @param kwargs Additional key-value arguments to function
54 */
55@NonCPS
56def runSaltCommand(master, client, target, function, batch = null, args = null, kwargs = null) {
iberezovskiyd4240b52017-02-20 17:18:28 +040057 def http = new com.mirantis.mk.Http()
Jakub Josef79ecec32017-02-17 14:36:28 +010058
59 data = [
60 'tgt': target.expression,
61 'fun': function,
62 'client': client,
63 'expr_form': target.type,
64 ]
65
66 if (batch) {
67 data['batch'] = batch
68 }
69
70 if (args) {
71 data['arg'] = args
72 }
73
74 if (kwargs) {
75 data['kwarg'] = kwargs
76 }
77
78 headers = [
79 'X-Auth-Token': "${master.authToken}"
80 ]
81
82 return http.sendHttpPostRequest("${master.url}/", data, headers)
83}
84
85def pillarGet(master, target, pillar) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +010086 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'pillar.get', null, [pillar.replace('.', ':')])
Jakub Josef79ecec32017-02-17 14:36:28 +010087 return out
88}
89
90def enforceState(master, target, state, output = false) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +010091 def common = new com.mirantis.mk.Common()
Jakub Josef79ecec32017-02-17 14:36:28 +010092 def run_states
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +010093
Jakub Josef79ecec32017-02-17 14:36:28 +010094 if (state instanceof String) {
95 run_states = state
96 } else {
97 run_states = state.join(',')
98 }
99
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100100 common.infoMsg("Enforcing state ${run_states} on ${target}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100101
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100102 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.sls', null, [run_states])
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100103
Jakub Josef79ecec32017-02-17 14:36:28 +0100104 try {
105 checkResult(out)
106 } finally {
107 if (output == true) {
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100108 printSaltStateResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100109 }
110 }
111 return out
112}
113
114def cmdRun(master, target, cmd) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100115 def common = new com.mirantis.mk.Common()
116
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100117 common.infoMsg("Running command ${cmd} on ${target}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100118
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100119 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'cmd.run', null, [cmd])
Jakub Josef79ecec32017-02-17 14:36:28 +0100120 return out
121}
122
123def syncAll(master, target) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100124 return runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'saltutil.sync_all')
Jakub Josef79ecec32017-02-17 14:36:28 +0100125}
126
127def enforceHighstate(master, target, output = false) {
Filip Pytloun5a7f7fd2017-02-27 18:50:25 +0100128 def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.highstate')
Jakub Josef79ecec32017-02-17 14:36:28 +0100129 try {
130 checkResult(out)
131 } finally {
132 if (output == true) {
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100133 printSaltStateResult(out)
Jakub Josef79ecec32017-02-17 14:36:28 +0100134 }
135 }
136 return out
137}
138
139def generateNodeKey(master, target, host, keysize = 4096) {
140 args = [host]
141 kwargs = ['keysize': keysize]
142 return runSaltCommand(master, 'wheel', target, 'key.gen_accept', args, kwargs)
143}
144
145def generateNodeMetadata(master, target, host, classes, parameters) {
146 args = [host, '_generated']
147 kwargs = ['classes': classes, 'parameters': parameters]
148 return runSaltCommand(master, 'local', target, 'reclass.node_create', args, kwargs)
149}
150
151def orchestrateSystem(master, target, orchestrate) {
152 return runSaltCommand(master, 'runner', target, 'state.orchestrate', [orchestrate])
153}
154
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100155def runSaltProcessStep(master, tgt, fun, arg = [], batch = null, output = true) {
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100156 def common = new com.mirantis.mk.Common()
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100157 def out
158
Tomáš Kukráldfd4b492017-03-02 12:08:50 +0100159 common.infoMsg("Running step ${fun} on ${tgt}")
Tomáš Kukrál6c04bd02017-03-01 22:18:52 +0100160
Jakub Josef79ecec32017-02-17 14:36:28 +0100161 if (batch) {
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100162 out = runSaltCommand(master, 'local_batch', ['expression': tgt, 'type': 'compound'], fun, String.valueOf(batch), arg)
163 } else {
164 out = runSaltCommand(master, 'local', ['expression': tgt, 'type': 'compound'], fun, batch, arg)
Jakub Josef79ecec32017-02-17 14:36:28 +0100165 }
Tomáš Kukráladb4ecd2017-03-02 10:06:36 +0100166
167 try {
168 checkResult(out)
169 } finally {
170 if (output == true) {
171 printSaltCommandResult(out)
172 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100173 }
Jakub Josef79ecec32017-02-17 14:36:28 +0100174}
175
176/**
177 * Check result for errors and throw exception if any found
178 *
179 * @param result Parsed response of Salt API
180 */
181def checkResult(result) {
182 for (entry in result['return']) {
183 if (!entry) {
184 throw new Exception("Salt API returned empty response: ${result}")
185 }
186 for (node in entry) {
187 for (resource in node.value) {
Tomáš Kukrál7783b8e2017-03-02 12:03:02 +0100188 print(resource.getClass().getName())
189 print(resource)
Jakub Josef79ecec32017-02-17 14:36:28 +0100190 if (resource instanceof String || resource.value.result.toString().toBoolean() != true) {
191 throw new Exception("Salt state on node ${node.key} failed: ${node.value}")
192 }
193 }
194 }
195 }
196}
197
198/**
199 * Print Salt state run results in human-friendly form
200 *
201 * @param result Parsed response of Salt API
202 * @param onlyChanges If true (default), print only changed resources
203 * parsing
204 */
205def printSaltStateResult(result, onlyChanges = true) {
206 def out = [:]
207 for (entry in result['return']) {
208 for (node in entry) {
209 out[node.key] = [:]
210 for (resource in node.value) {
211 if (resource instanceof String) {
212 out[node.key] = node.value
213 } else if (resource.value.result.toString().toBoolean() == false || resource.value.changes || onlyChanges == false) {
214 out[node.key][resource.key] = resource.value
215 }
216 }
217 }
218 }
219
220 for (node in out) {
221 if (node.value) {
222 println "Node ${node.key} changes:"
223 print new groovy.json.JsonBuilder(node.value).toPrettyString()
224 } else {
225 println "No changes for node ${node.key}"
226 }
227 }
228}
229
230/**
231 * Print Salt state run results in human-friendly form
232 *
233 * @param result Parsed response of Salt API
Jakub Josef79ecec32017-02-17 14:36:28 +0100234 */
Filip Pytlound2f1bbe2017-02-27 19:03:51 +0100235def printSaltCommandResult(result) {
Jakub Josef79ecec32017-02-17 14:36:28 +0100236 def out = [:]
237 for (entry in result['return']) {
238 for (node in entry) {
239 out[node.key] = [:]
240 for (resource in node.value) {
241 out[node.key] = node.value
242 }
243 }
244 }
245
246 for (node in out) {
247 if (node.value) {
248 println "Node ${node.key} changes:"
249 print new groovy.json.JsonBuilder(node.value).toPrettyString()
250 } else {
251 println "No changes for node ${node.key}"
252 }
253 }
254}