-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckpoint.go
79 lines (65 loc) · 1.49 KB
/
checkpoint.go
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
// Code generated by lesiw.io/ctrctl. DO NOT EDIT.
package ctrctl
import "os/exec"
type CheckpointCreateOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Use a custom checkpoint storage directory.
CheckpointDir string
// Print usage.
Help bool
// Leave the container running after checkpoint.
LeaveRunning bool
}
// Create a checkpoint from a running container.
func CheckpointCreate(opts *CheckpointCreateOpts, container string, checkpoint string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"checkpoint", "create"},
[]string{container, checkpoint},
opts,
0,
)
}
type CheckpointLsOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Use a custom checkpoint storage directory.
CheckpointDir string
// Print usage.
Help bool
}
// List checkpoints for a container.
func CheckpointLs(opts *CheckpointLsOpts, container string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"checkpoint", "ls"},
[]string{container},
opts,
0,
)
}
type CheckpointRmOpts struct {
// Base exec.Cmd.
Cmd *exec.Cmd
// Use a custom checkpoint storage directory.
CheckpointDir string
// Print usage.
Help bool
}
// Remove a checkpoint.
func CheckpointRm(opts *CheckpointRmOpts, container string, checkpoint string) (string, error) {
if err := findCli(); err != nil {
return "", err
}
return runCtrCmd(
[]string{"checkpoint", "rm"},
[]string{container, checkpoint},
opts,
0,
)
}