Add snapshot label command to ctr
Allows easier debugging of snapshots using labels Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
parent
103dd0e75e
commit
e378196505
@ -28,6 +28,7 @@ var snapshotCommand = cli.Command{
|
||||
mountSnapshotCommand,
|
||||
commitSnapshotCommand,
|
||||
infoSnapshotCommand,
|
||||
labelSnapshotCommand,
|
||||
},
|
||||
}
|
||||
|
||||
@ -343,6 +344,58 @@ var infoSnapshotCommand = cli.Command{
|
||||
},
|
||||
}
|
||||
|
||||
var labelSnapshotCommand = cli.Command{
|
||||
Name: "label",
|
||||
Usage: "add labels to content",
|
||||
ArgsUsage: "[flags] <name> [<label>=<value> ...]",
|
||||
Description: `Labels snapshots in the snapshotter`,
|
||||
Flags: []cli.Flag{},
|
||||
Action: func(clicontext *cli.Context) error {
|
||||
var (
|
||||
key, labels = objectWithLabelArgs(clicontext)
|
||||
)
|
||||
ctx, cancel := appContext(clicontext)
|
||||
defer cancel()
|
||||
|
||||
snapshotter, err := getSnapshotter(clicontext)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
info := snapshot.Info{
|
||||
Name: key,
|
||||
Labels: map[string]string{},
|
||||
}
|
||||
|
||||
var paths []string
|
||||
for k, v := range labels {
|
||||
paths = append(paths, fmt.Sprintf("labels.%s", k))
|
||||
if v != "" {
|
||||
info.Labels[k] = v
|
||||
}
|
||||
}
|
||||
|
||||
// Nothing updated, do no clear
|
||||
if len(paths) == 0 {
|
||||
info, err = snapshotter.Stat(ctx, info.Name)
|
||||
} else {
|
||||
info, err = snapshotter.Update(ctx, info, paths...)
|
||||
}
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
var labelStrings []string
|
||||
for k, v := range info.Labels {
|
||||
labelStrings = append(labelStrings, fmt.Sprintf("%s=%s", k, v))
|
||||
}
|
||||
|
||||
fmt.Println(strings.Join(labelStrings, ","))
|
||||
|
||||
return nil
|
||||
},
|
||||
}
|
||||
|
||||
type snapshotTreeNode struct {
|
||||
Name string
|
||||
Parent string
|
||||
|
Loading…
Reference in New Issue
Block a user