2017-07-12 17:37:16 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2017-09-09 11:14:40 +00:00
|
|
|
"os"
|
2017-07-12 17:37:16 +00:00
|
|
|
|
2017-09-21 19:21:56 +00:00
|
|
|
"github.com/kubernetes-incubator/cri-o/libpod"
|
2017-07-12 17:37:16 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
loadFlags = []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "input, i",
|
|
|
|
Usage: "Read from archive file, default is STDIN",
|
|
|
|
Value: "/dev/stdin",
|
|
|
|
},
|
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "quiet, q",
|
|
|
|
Usage: "Suppress the output",
|
|
|
|
},
|
2017-10-13 00:35:08 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "signature-policy",
|
|
|
|
Usage: "`pathname` of signature policy file (not usually used)",
|
|
|
|
},
|
2017-07-12 17:37:16 +00:00
|
|
|
}
|
|
|
|
loadDescription = "Loads the image from docker-archive stored on the local machine."
|
|
|
|
loadCommand = cli.Command{
|
|
|
|
Name: "load",
|
|
|
|
Usage: "load an image from docker archive",
|
|
|
|
Description: loadDescription,
|
|
|
|
Flags: loadFlags,
|
|
|
|
Action: loadCmd,
|
|
|
|
ArgsUsage: "",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
// loadCmd gets the image/file to be loaded from the command line
|
|
|
|
// and calls loadImage to load the image to containers-storage
|
|
|
|
func loadCmd(c *cli.Context) error {
|
|
|
|
|
|
|
|
args := c.Args()
|
2017-08-02 20:32:44 +00:00
|
|
|
var image string
|
|
|
|
if len(args) == 1 {
|
|
|
|
image = args[0]
|
|
|
|
}
|
|
|
|
if len(args) > 1 {
|
2017-07-12 17:37:16 +00:00
|
|
|
return errors.New("too many arguments. Requires exactly 1")
|
|
|
|
}
|
2017-09-28 18:44:48 +00:00
|
|
|
if err := validateFlags(c, loadFlags); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-07-12 17:37:16 +00:00
|
|
|
|
2017-09-09 11:14:40 +00:00
|
|
|
runtime, err := getRuntime(c)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrapf(err, "could not get runtime")
|
|
|
|
}
|
|
|
|
defer runtime.Shutdown(false)
|
|
|
|
|
2017-07-12 17:37:16 +00:00
|
|
|
input := c.String("input")
|
|
|
|
|
|
|
|
if input == "/dev/stdin" {
|
|
|
|
fi, err := os.Stdin.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// checking if loading from pipe
|
|
|
|
if !fi.Mode().IsRegular() {
|
|
|
|
outFile, err := ioutil.TempFile("/var/tmp", "kpod")
|
|
|
|
if err != nil {
|
|
|
|
return errors.Errorf("error creating file %v", err)
|
|
|
|
}
|
|
|
|
defer outFile.Close()
|
|
|
|
defer os.Remove(outFile.Name())
|
|
|
|
|
|
|
|
inFile, err := os.OpenFile(input, 0, 0666)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Errorf("error reading file %v", err)
|
|
|
|
}
|
|
|
|
defer inFile.Close()
|
|
|
|
|
|
|
|
_, err = io.Copy(outFile, inFile)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Errorf("error copying file %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
input = outFile.Name()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 11:14:40 +00:00
|
|
|
var output io.Writer
|
|
|
|
if !c.Bool("quiet") {
|
|
|
|
output = os.Stdout
|
2017-08-02 20:32:44 +00:00
|
|
|
}
|
2017-07-12 17:37:16 +00:00
|
|
|
|
2017-09-21 19:21:56 +00:00
|
|
|
src := libpod.DockerArchive + ":" + input
|
2017-10-13 00:35:08 +00:00
|
|
|
if err := runtime.PullImage(src, false, c.String("signature-policy"), output); err != nil {
|
2017-09-21 19:21:56 +00:00
|
|
|
src = libpod.OCIArchive + ":" + input
|
2017-08-02 20:32:44 +00:00
|
|
|
// generate full src name with specified image:tag
|
2017-09-09 11:14:40 +00:00
|
|
|
if image != "" {
|
|
|
|
src = src + ":" + image
|
2017-08-02 20:32:44 +00:00
|
|
|
}
|
2017-09-09 11:14:40 +00:00
|
|
|
if err := runtime.PullImage(src, false, "", output); err != nil {
|
|
|
|
return errors.Wrapf(err, "error pulling %q", src)
|
2017-08-02 20:32:44 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-09 11:14:40 +00:00
|
|
|
|
2017-08-02 20:32:44 +00:00
|
|
|
return nil
|
2017-07-12 17:37:16 +00:00
|
|
|
}
|