-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlambdakubectl.js
54 lines (47 loc) · 1.47 KB
/
lambdakubectl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* lambdakubectl.js
* Lambda kubectl: nodejs to wrap and execute kubectl
* Author: Tal Muskal
*/
/* aws lambda handler */
exports.handler = function(event, context) {
const params = event.params;
const command = event.command;
let stdin = event.stdin;
if (typeof(stdin) === "object") {
stdin = JSON.stringify(stdin);
}
// params.push('--output');
// params.push('json');
params.push('--kubeconfig');
params.push('config');
/* use spawn */
let stdout = "";
let strerr = "";
var util = require('util'),
spawn = require('child_process').spawn,
bash = spawn('./bin/kubectl', params); // [''] place holders for args
bash.stdout.on('data', function(data) { // stdout handler
console.log('stdout: ' + data);
stdout = stdout + data;
});
bash.stderr.on('data', function(data) { // stderr handler
console.log('stderr: ' + data);
// context.fail('stderr: ' + data);
strerr = strerr + data;
// context.fail('Something went wrong');
});
bash.on('exit', function(code) { // exit code handler
console.log('kubectl exited with code ' + code);
if (code != 0) {
context.fail({ code: code, strerr: strerr, stdout: stdout });
}
else {
context.succeed({ code: code, strerr: strerr, stdout: stdout });
}
});
if (stdin) {
bash.stdin.write(stdin);
bash.stdin.end();
}
};