-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathmultipass.ts
582 lines (580 loc) · 16 KB
/
multipass.ts
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
const sharedOpts: Record<string, Fig.Option> = {
help: {
name: ["-h", "--help"],
description: "Displays help on commandline options",
isPersistent: true,
},
helpAll: {
name: "--help-all",
description: "Displays help including Qt specific options",
isPersistent: true,
},
verbose: {
name: ["-v", "--verbose"],
description:
"Increase logging verbosity. Repeat the 'v' in the short " +
"option for more detail. Maximum verbosity is obtained " +
"with 4 (or more) v's, i.e. -vvvv",
isPersistent: true,
},
format: {
name: "--format",
description:
"Output list in the requested format. " +
"Valid formats are: table (default), json, csv and yaml",
args: {
name: "format",
suggestions: ["table", "json", "csv", "yaml"],
default: "table",
},
},
timeout: {
name: "--timeout",
description:
"Maximum time, in seconds, to wait for the command to " +
"complete. Note that some background operations may " +
"continue beyond that. By default, instance startup and " +
"initialization is limited to 5 minutes each",
args: {
name: "timeout",
default: "300",
},
},
};
const multipassGenerators: Record<string, Fig.Generator> = {
allAvailableImages: {
script: ["multipass", "find", "--format=json"],
postProcess: (out) => {
const images = JSON.parse(out).images;
return Object.keys(images).map((key) => {
return {
name: key,
description: images[key].os + " " + images[key].release,
};
});
},
},
allAvailableInstances: {
script: ["multipass", "list", "--format=json"],
postProcess: (out) => {
return JSON.parse(out).list.map((instance) => {
if (instance.state !== "Deleted") {
return {
name: instance.name,
description: instance.release,
};
}
});
},
},
allRunningInstances: {
script: ["multipass", "list", "--format=json"],
postProcess: (out) => {
return JSON.parse(out).list.map((instance) => {
if (instance.state === "Running") {
return {
name: instance.name,
description: instance.release,
};
}
});
},
},
allStoppedInstances: {
script: ["multipass", "list", "--format=json"],
postProcess: (out) => {
return JSON.parse(out).list.map((instance) => {
if (instance.state === "Stopped") {
return {
name: instance.name,
description: instance.release,
};
}
});
},
},
allDeletedInstances: {
script: ["multipass", "list", "--format=json"],
postProcess: (out) => {
return JSON.parse(out).list.map((instance) => {
if (instance.state === "Deleted") {
return {
name: instance.name,
description: instance.release,
};
}
});
},
},
};
const completionSpec: Fig.Spec = {
name: "multipass",
description: "Create, control and connect to Ubuntu instances",
subcommands: [
{
name: "alias",
description: "Create an alias",
args: [
{
name: "options",
isOptional: true,
},
{
name: "definition",
description: "Alias definition in the form <instance>:<command>",
},
{
isOptional: true,
name: "name",
description:
"Name given to the alias being defined, defaults to <command>",
},
],
},
{
name: "aliases",
description: "List available aliases",
options: [sharedOpts.format],
},
{
name: "delete",
description: "Delete instances",
options: [
{
name: "--all",
description: "Delete all instances",
},
{
name: ["-p", "--purge"],
description: "Purge instances immediately",
},
],
args: {
isVariadic: true,
name: "name",
description: "Name of instances to delete",
generators: multipassGenerators.allAvailableInstances,
},
},
{
name: "exec",
description: "Run a command on an instance",
args: [
{
name: "name",
description: "Name of the instance to run the command on",
generators: multipassGenerators.allAvailableInstances,
},
{
name: "command",
description: "Command to execute on the instance",
},
],
},
{
name: "find",
description: "Display available images to create instances from",
options: [
sharedOpts.format,
{
name: "--show-unsupported",
description: "Show unsupported cloud images as well",
},
],
args: {
isOptional: true,
name: "string",
description:
"An optional value to search for in [<remote:>]<string> " +
"format, where <remote> can be either 'release' or 'daily'. " +
"If <remote> is omitted, it will search 'release' first, " +
"and if no matches are found, it will then search 'daily'. " +
"<string> can be a partial image hash or an Ubuntu release " +
"version, codename or alias.",
},
},
{
name: "get",
description: "Get a configuration setting",
options: [
{
name: "--raw",
description:
"Output in raw format. For now, this affects only the " +
'representation of empty values (i.e. "" instead of "<empty>")',
},
],
args: {
name: "key",
description:
"Path to the setting whose configured value should be obtained",
suggestions: [
"client.gui.autostart",
"client.gui.hotkey",
"client.primary-name",
"local.bridged-network",
"local.driver",
"local.privileged-mounts",
],
},
},
{
name: "help",
description: "Display help about a command",
args: {
name: "command",
description: "Name of command to display help for",
isOptional: true,
},
},
{
name: "info",
description: "Display information about instances",
options: [
sharedOpts.format,
{
name: "--all",
description: "Display info for all instances",
},
],
args: {
isVariadic: true,
name: "name",
description: "Names of instances to display information about",
generators: multipassGenerators.allAvailableInstances,
},
},
{
name: "launch",
description: "Create and start an Ubuntu instance",
options: [
sharedOpts.timeout,
{
name: ["-c", "--cpus"],
description: "Number of CPUs to allocate. Minimum: 1, default: 1",
args: {
name: "cpus",
default: "1",
},
},
{
name: ["-d", "--disk"],
description:
"Disk space to allocate. Positive integers, in bytes, or " +
"with K, M, G suffix " +
"Minimum: 512M, default: 5G.",
args: {
name: "disk",
default: "5G",
},
},
{
name: ["-m", "--mem"],
description:
"Amount of memory to allocate. Positive integers, in " +
"bytes, or with K, M, G suffix " +
"Minimum: 128M, default: 1G.",
args: {
name: "mem",
default: "1G",
},
},
{
name: ["-n", "--name"],
description:
"Name for the instance. If it is 'primary' (the " +
"configured primary instance name), the user's home " +
"directory is mounted inside the newly launched instance, " +
"in 'Home'",
args: {
name: "name",
default: "primary",
},
},
{
name: "--cloud-init",
description:
"Path to a user-data cloud-init configuration, or '-' for" +
"stdin",
args: {
name: "file",
},
},
{
name: "--network",
description:
"Add a network interface to the instance, where <spec> is " +
'in the "key=value,key=value" format',
args: {
name: "spec",
},
},
{
name: "--bridged",
description: "Adds one `--network bridged` network",
},
],
args: {
isOptional: true,
name: "image",
description:
"Optional image to launch. If omitted, then the default " +
"Ubuntu LTS will be used",
generators: multipassGenerators.allAvailableImages,
},
},
{
name: "list",
description: "List all available instances",
options: [sharedOpts.format],
},
{
name: "mount",
description: "Mount a local directory in the instance",
options: [
{
name: ["-g", "--gid-map"],
description:
"A mapping of group IDs for use in the mount. " +
"File and folder ownership will be mapped from " +
"<host> to <instance> inside the instance. Can " +
"be used multiple times",
args: {
name: "host:instance",
},
},
{
name: ["-u", "--uid-map"],
description:
"A mapping of user IDs for use in the mount. " +
"File and folder ownership will be mapped from " +
"<host> to <instance> inside the instance. Can " +
"be used multiple times",
args: {
name: "host:instance",
},
},
],
args: [
{
name: "source",
description: "Path to the local directory to mount",
template: "folders",
},
{
isVariadic: true,
name: "target",
description:
"Target mount points, in <name>[:<path>] " +
"format, where <name> is an instance name, and " +
"optional <path> is the mount point. If " +
"omitted, the mount point will be the same as " +
"the source's absolute path",
},
],
},
{
name: "networks",
description: "List all available networks interfaces",
options: [sharedOpts.format],
},
{
name: "purge",
description: "Purge all deleted instances permanently",
},
{
name: "recover",
description: "Recover deleted instances",
options: [
{
name: "--all",
description: "Recover all deleted instances",
},
],
args: {
isVariadic: true,
name: "name",
description: "Names of instances to recover",
generators: multipassGenerators.allDeletedInstances,
},
},
{
name: "restart",
description: "Restart instances",
options: [
sharedOpts.timeout,
{
name: "--all",
description: "Restart all instances",
},
],
args: {
isVariadic: true,
isOptional: true,
name: "name",
description:
"Names of instances to restart. If omitted, and without " +
"the --all option, 'primary' will be assumed",
generators: multipassGenerators.allAvailableInstances,
},
},
{
name: "set",
description: "Set a configuration setting",
args: {
name: "key=value",
description:
"A key-value pair. The key specifies a path to " +
"the setting to configure. The value is its intended value",
suggestions: [
"client.gui.autostart=",
"client.gui.hotkey=",
"client.primary-name=",
"local.bridged-network=",
"local.driver=",
"local.privileged-mounts=",
],
},
},
{
name: "shell",
description: "Open a shell on a running instance",
options: [sharedOpts.timeout],
args: {
isVariadic: true,
isOptional: true,
name: "name",
description:
"Name of the instance to open a shell on. If omitted, " +
"'primary' (the configured primary instance name) will be " +
"assumed. If the instance is not running, an attempt is " +
"made to start it (see `start` for more info)",
generators: multipassGenerators.allAvailableInstances,
},
},
{
name: "start",
description: "Start instances",
options: [
sharedOpts.timeout,
{
name: "--all",
description: "Start all instances",
},
],
args: {
isVariadic: true,
isOptional: true,
name: "name",
description:
"Names of instances to start. If omitted, and without the " +
"--all option, 'primary' (the configured primary instance " +
"name) will be assumed. If 'primary' does not exist but is " +
"included in a successful start command either implicitly " +
"or explicitly), it is launched automatically (see" +
"`launch` for more info).",
generators: multipassGenerators.allStoppedInstances,
},
},
{
name: "stop",
description: "Stop running instances",
options: [
{
name: "--all",
description: "Stop all instances",
},
{
name: ["-t", "--time"],
description:
"Time from now, in minutes, to delay shutdown of the instance",
args: {
name: "time",
},
},
{
name: ["-c", "--cancel"],
description: "Cancel a pending delayed shutdown",
},
],
args: {
isVariadic: true,
isOptional: true,
name: "name",
description:
"Names of instances to stop. If omitted, and without the " +
"--all option, 'primary' will be assumed.",
generators: multipassGenerators.allRunningInstances,
},
},
{
name: "suspend",
description: "Suspend running instances",
options: [
{
name: "--all",
description: "Suspend all instances",
},
],
args: {
isVariadic: true,
isOptional: true,
name: "name",
description:
"Names of instances to suspend. If omitted, and without the " +
"--all option, 'primary' will be assumed.",
generators: multipassGenerators.allRunningInstances,
},
},
{
name: "transfer",
description: "Transfer files between the host and instances",
args: [
{
isVariadic: true,
name: "source",
description:
"One or more paths to transfer, prefixed with <name:> for paths " +
"inside the instance, or '-' for stdin",
template: "filepaths",
},
{
name: "destination",
description:
"The destination path, prefixed with <name:> for paths inside " +
"the instance, or '-' for stdout",
template: "filepaths",
},
],
},
{
name: "umount",
description: "Unmount a directory from an instance",
args: {
isVariadic: true,
name: "mount",
description:
"Mount points, in <name>[:<path>] format, where <name> are " +
"instance names, and optional <path> are mount points. If " +
"omitted, all mounts will be removed from the named instances.",
},
},
{
name: "unalias",
description: "Remove an alias",
args: {
name: "name",
description: "The name of the alias to remove",
},
},
{
name: "version",
description: "Show version details",
options: [sharedOpts.format],
},
],
options: [sharedOpts.help, sharedOpts.helpAll, sharedOpts.verbose],
// Only uncomment if multipass takes an argument
// args: {}
};
export default completionSpec;