mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
122 lines
4.7 KiB
Go
122 lines
4.7 KiB
Go
package containers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/containers/common/pkg/completion"
|
|
"github.com/containers/podman/v2/cmd/podman/common"
|
|
"github.com/containers/podman/v2/cmd/podman/registry"
|
|
"github.com/containers/podman/v2/cmd/podman/utils"
|
|
"github.com/containers/podman/v2/cmd/podman/validate"
|
|
"github.com/containers/podman/v2/pkg/domain/entities"
|
|
"github.com/containers/podman/v2/pkg/rootless"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
restoreDescription = `
|
|
podman container restore
|
|
|
|
Restores a container from a checkpoint. The container name or ID can be used.
|
|
`
|
|
restoreCommand = &cobra.Command{
|
|
Use: "restore [options] CONTAINER [CONTAINER...]",
|
|
Short: "Restores one or more containers from a checkpoint",
|
|
Long: restoreDescription,
|
|
RunE: restore,
|
|
Args: func(cmd *cobra.Command, args []string) error {
|
|
return validate.CheckAllLatestAndCIDFile(cmd, args, true, false)
|
|
},
|
|
ValidArgsFunction: common.AutocompleteContainers,
|
|
Example: `podman container restore ctrID
|
|
podman container restore --latest
|
|
podman container restore --all`,
|
|
}
|
|
)
|
|
|
|
var (
|
|
restoreOptions entities.RestoreOptions
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: restoreCommand,
|
|
Parent: containerCmd,
|
|
})
|
|
flags := restoreCommand.Flags()
|
|
flags.BoolVarP(&restoreOptions.All, "all", "a", false, "Restore all checkpointed containers")
|
|
flags.BoolVarP(&restoreOptions.Keep, "keep", "k", false, "Keep all temporary checkpoint files")
|
|
flags.BoolVar(&restoreOptions.TCPEstablished, "tcp-established", false, "Restore a container with established TCP connections")
|
|
|
|
importFlagName := "import"
|
|
flags.StringVarP(&restoreOptions.Import, importFlagName, "i", "", "Restore from exported checkpoint archive (tar.gz)")
|
|
_ = restoreCommand.RegisterFlagCompletionFunc(importFlagName, completion.AutocompleteDefault)
|
|
|
|
nameFlagName := "name"
|
|
flags.StringVarP(&restoreOptions.Name, nameFlagName, "n", "", "Specify new name for container restored from exported checkpoint (only works with --import)")
|
|
_ = restoreCommand.RegisterFlagCompletionFunc(nameFlagName, completion.AutocompleteNone)
|
|
|
|
importPreviousFlagName := "import-previous"
|
|
flags.StringVar(&restoreOptions.ImportPrevious, importPreviousFlagName, "", "Restore from exported pre-checkpoint archive (tar.gz)")
|
|
_ = restoreCommand.RegisterFlagCompletionFunc(importPreviousFlagName, completion.AutocompleteDefault)
|
|
|
|
flags.BoolVar(&restoreOptions.IgnoreRootFS, "ignore-rootfs", false, "Do not apply root file-system changes when importing from exported checkpoint")
|
|
flags.BoolVar(&restoreOptions.IgnoreStaticIP, "ignore-static-ip", false, "Ignore IP address set via --static-ip")
|
|
flags.BoolVar(&restoreOptions.IgnoreStaticMAC, "ignore-static-mac", false, "Ignore MAC address set via --mac-address")
|
|
flags.BoolVar(&restoreOptions.IgnoreVolumes, "ignore-volumes", false, "Do not export volumes associated with container")
|
|
validate.AddLatestFlag(restoreCommand, &restoreOptions.Latest)
|
|
}
|
|
|
|
func restore(_ *cobra.Command, args []string) error {
|
|
var errs utils.OutputErrors
|
|
if rootless.IsRootless() {
|
|
return errors.New("restoring a container requires root")
|
|
}
|
|
if restoreOptions.Import == "" && restoreOptions.ImportPrevious != "" {
|
|
return errors.Errorf("--import-previous can only be used with --import")
|
|
}
|
|
if restoreOptions.Import == "" && restoreOptions.IgnoreRootFS {
|
|
return errors.Errorf("--ignore-rootfs can only be used with --import")
|
|
}
|
|
if restoreOptions.Import == "" && restoreOptions.IgnoreVolumes {
|
|
return errors.Errorf("--ignore-volumes can only be used with --import")
|
|
}
|
|
if restoreOptions.Import == "" && restoreOptions.Name != "" {
|
|
return errors.Errorf("--name can only be used with --import")
|
|
}
|
|
if restoreOptions.Name != "" && restoreOptions.TCPEstablished {
|
|
return errors.Errorf("--tcp-established cannot be used with --name")
|
|
}
|
|
|
|
argLen := len(args)
|
|
if restoreOptions.Import != "" {
|
|
if restoreOptions.All || restoreOptions.Latest {
|
|
return errors.Errorf("Cannot use --import with --all or --latest")
|
|
}
|
|
if argLen > 0 {
|
|
return errors.Errorf("Cannot use --import with positional arguments")
|
|
}
|
|
}
|
|
if (restoreOptions.All || restoreOptions.Latest) && argLen > 0 {
|
|
return errors.Errorf("--all or --latest and containers cannot be used together")
|
|
}
|
|
if argLen < 1 && !restoreOptions.All && !restoreOptions.Latest && restoreOptions.Import == "" {
|
|
return errors.Errorf("you must provide at least one name or id")
|
|
}
|
|
responses, err := registry.ContainerEngine().ContainerRestore(context.Background(), args, restoreOptions)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, r := range responses {
|
|
if r.Err == nil {
|
|
fmt.Println(r.Id)
|
|
} else {
|
|
errs = append(errs, r.Err)
|
|
}
|
|
}
|
|
return errs.PrintErrors()
|
|
|
|
}
|