-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·392 lines (367 loc) · 10.3 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#!/usr/bin/env node
const bluebird = require('bluebird');
const execa = require('execa');
const ora = require('ora');
const inquirer = require('inquirer');
const logUpdate = require('log-update');
const spinners = require('cli-spinners');
const inquirerAutocompletePrompt = require('inquirer-autocomplete-prompt');
const chalk = require('chalk').default;
const PodsWatcher = require('./plugins/pods_watcher');
const blankChars = ' \t\n\r\f\v';
const regExpChars = '\\^$.*+?()[]{}|';
const args = process.argv.slice(2);
inquirer.registerPrompt('autocomplete', inquirerAutocompletePrompt);
const forever = () => true;
const sleep = milliseconds =>
new Promise(resolve => setTimeout(resolve, milliseconds));
const match = (text, input) => {
const inputChars = Array.from(input).filter(
input => blankChars.indexOf(input) === -1
);
const pattern = inputChars
.map(char => (regExpChars.indexOf(char) !== -1 ? `\\${char}` : char))
.join('.*');
return new RegExp(pattern).test(text);
};
const ask = (message, choices) =>
inquirer
.prompt([
{
type: 'autocomplete',
message,
source: async (answers, input) =>
choices.filter(choice => match(choice, input || '')),
when: answers => {
const input = args.shift();
if (!input) {
return true;
}
const found = choices.find(choice => match(choice, input));
if (!found) {
return true;
}
answers.input = found;
ora(`${chalk.bold(message)} ${chalk.cyan(found)}`).info();
},
name: 'input',
},
])
.then(res => res.input);
const askMultiple = (message, choices) =>
inquirer
.prompt([
{
type: 'autocomplete',
message,
suggestOnly: true,
source: async (answers, input) =>
choices.filter(choice => match(choice, input || '')),
when: answers => {
const input = args.shift();
if (!input) {
return true;
}
const found = choices.find(choice => match(choice, input));
if (!found) {
return true;
}
answers.input = input;
ora(`${chalk.bold(message)} ${chalk.cyan(input)}`).info();
},
name: 'input',
},
])
.then(res => choices.filter(choice => match(choice, res.input || '')));
const askFilter = (message, choices) =>
inquirer
.prompt([
{
type: 'checkbox',
message,
choices,
default: choices,
name: 'input',
},
])
.then(res => res.input);
/*
* Operations not implemented:
* 'describe', 'create', 'update', 'delete', 'rolling-update', 'port-forward', 'proxy',
* 'run', 'expose', 'label', 'config', 'cluster-info', 'api-versions', 'version', 'help'
*/
const ops = {
get: 'get',
getWatch: 'get-watch',
exec: 'exec',
logHistory: 'log-history',
logFuture: 'log-future',
logMultipleFuture: 'mlog-future',
help: 'help',
};
const oplist = [
ops.get,
ops.getWatch,
ops.exec,
ops.logHistory,
ops.logFuture,
ops.logMultipleFuture,
ops.help,
];
const resourceTypes = [
'all',
// 'certificatesigningrequests',
// 'clusterrolebindings',
// 'clusterroles',
// 'componentstatuses',
// 'configmaps',
// 'controllerrevisions',
// 'cronjobs',
// 'customresourcedefinition',
// 'daemonsets',
'deployments',
'endpoints',
'events',
// 'horizontalpodautoscalers',
// 'ingresses',
'jobs',
// 'limitranges',
'namespaces',
// 'networkpolicies',
'nodes',
// 'persistentvolumeclaims',
// 'persistentvolumes',
// 'poddisruptionbudgets',
// 'podpreset',
'pods',
// 'podsecuritypolicies',
// 'podtemplates',
'replicasets',
// 'replicationcontrollers',
// 'resourcequotas',
// 'rolebindings',
// 'roles',
// 'secrets',
// 'serviceaccounts',
'services',
'statefulsets',
'storageclasses',
];
async function selectPod(namespace) {
const pods = await execa
.stdout('kubectl', ['-n', namespace, 'get', 'pods'])
.then(raw =>
raw
.trim()
.split('\n')
.map(line => line.trim().split(/\s+/))
.filter(words => words[2] === 'Running')
.map(words => words[0])
.filter(word => word !== 'NAME')
);
return ask('Select a pod:', pods);
}
async function selectMultiplePod(namespace) {
const pods = await execa
.stdout('kubectl', ['-n', namespace, 'get', 'pods'])
.then(raw =>
raw
.trim()
.split('\n')
.map(line => line.trim().split(/\s+/))
.filter(words => words[2] === 'Running')
.map(words => words[0])
.filter(word => word !== 'NAME')
);
return askMultiple('Select a pod:', pods);
}
const help = [
'',
`${chalk.bold('kubectl.js')} is an wrapper for kubectl to get better UX.`,
'',
'Find more information at: https://github.com/linkeo/kubectl.js',
'',
`${chalk.bold('Usage:')} kubectl [op [args...]] `,
'',
`${chalk.bold('Operations (op):')}`,
` ${chalk.bold('(none)')}`,
` ${chalk.italic('Will ask you to choose one.')}`,
'',
` ${chalk.bold('get')} namespaces | [namespace] [resource-type]`,
` ${chalk.italic('Print resources.')}`,
'',
` ${chalk.bold('get-watch')} namespaces | [namespace] [resource-type]`,
` ${chalk.italic('Print resources every 1s.')}`,
'',
` ${chalk.bold('exec')} [namespace] [pod]`,
` ${chalk.italic('Execute commands in a pod (bash)')}`,
'',
` ${chalk.bold('log-history')} [namespace] [pod]`,
` ${chalk.italic('Print history logs of a pod.')}`,
'',
` ${chalk.bold('log-future')} [namespace] [pod]`,
` ${chalk.italic('future logs of a pod.')}`,
'',
` ${chalk.bold('mlog-future')} [namespace] [pod-keyword]`,
` ${chalk.italic('Print future logs of some pods.')}`,
'',
` ${chalk.bold('help')}`,
` ${chalk.italic('Print help.')}`,
'',
'',
`${chalk.bold('Resource Types:')}`,
` ${resourceTypes.join(', ')}.`,
].join('\n');
async function main() {
ora(
chalk.yellow(
'[pre-release] This is a pre-release version, with limited functionality.'
)
).warn();
if (args[0] === '--help') {
console.log(help);
return;
}
const namespaces = await execa
.stdout('kubectl', ['get', 'namespaces'])
.then(raw =>
raw
.trim()
.split('\n')
.map(line => line.trim().split(/\s+/)[0])
.filter(word => word !== 'NAME')
);
const operation = await ask('What do you want to do?', oplist);
switch (operation) {
case ops.help:
{
console.log(help);
}
break;
case ops.get:
{
const resourceType = await ask(
'Select an resource type:',
resourceTypes
);
const namespace =
resourceType !== 'namespaces'
? await ask('Select a namespace:', namespaces)
: null;
const output =
resourceType !== 'namespaces'
? await execa.stdout('kubectl', [
'-o',
'wide',
'-n',
namespace,
'get',
resourceType,
])
: await execa.stdout('kubectl', ['get', resourceType]);
console.log(output);
}
break;
case ops.getWatch:
{
const resourceType = await ask(
'Select an resource type:',
resourceTypes
);
const namespace =
resourceType !== 'namespaces'
? await ask('Select a namespace:', namespaces)
: null;
const spinner = spinners.dots;
let index = 0;
const getFrame = () =>
spinner.frames[(index = (index + 1) % spinner.frames.length)];
logUpdate([chalk.cyan(getFrame()), chalk.gray('Pending...')].join(' '));
const watcher = new PodsWatcher(namespace);
do {
await Promise.all([
sleep(1000),
(async () => {
const output =
resourceType !== 'namespaces'
? await execa.stdout('kubectl', [
'-o',
'wide',
'-n',
namespace,
'get',
resourceType,
])
: await execa.stdout('kubectl', ['get', resourceType]);
watcher.update(output);
const header = [
chalk.cyan(getFrame()),
chalk.gray('Watching...'),
].join(' ');
logUpdate(`${header}\n${output}`);
})().catch(() => {}),
]);
} while (forever());
}
break;
case ops.exec:
{
const namespace = await ask('Select a namespace:', namespaces);
const pod = await selectPod(namespace);
await execa('kubectl', ['-n', namespace, 'exec', '-it', pod, 'bash'], {
stdio: 'inherit',
reject: false,
});
}
break;
case ops.logHistory:
{
const namespace = await ask('Select a namespace:', namespaces);
const pod = await selectPod(namespace);
await execa('kubectl', ['-n', namespace, 'logs', pod], {
stdout: 'inherit',
stderr: 'inherit',
reject: false,
});
}
break;
case ops.logFuture:
{
const namespace = await ask('Select a namespace:', namespaces);
const pod = await selectPod(namespace);
const e = execa(
'kubectl',
['-n', namespace, 'logs', '-f', '--tail=1', pod],
{ reject: false }
);
e.stdout.pipe(process.stdout);
e.stderr.pipe(process.stderr);
await e;
}
break;
case ops.logMultipleFuture:
{
const namespace = await ask('Select a namespace:', namespaces);
const pods = await selectMultiplePod(namespace).then(match =>
askFilter('Confirm pods you need:', match)
);
await bluebird.map(pods, pod => {
const e = execa(
'kubectl',
['-n', namespace, 'logs', '-f', '--tail=1', pod],
{ reject: false }
);
e.stdout.pipe(process.stdout);
e.stderr.pipe(process.stderr);
return e;
});
}
break;
default:
ora(`Operation ${chalk.cyan(operation)} is not supported yet.`).fail();
break;
}
}
main().catch(error => {
ora(error.message).fail();
});