1 Star 0 Fork 1

Derek Ray/podman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
volume_create.go 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
umohnani8 提交于 2018-08-08 09:50 . Add "podman volume" command
package main
import (
"fmt"
"github.com/containers/libpod/cmd/podman/libpodruntime"
"github.com/containers/libpod/libpod"
"github.com/pkg/errors"
"github.com/urfave/cli"
)
var volumeCreateDescription = `
podman volume create
Creates a new volume. If using the default driver, "local", the volume will
be created at.`
var volumeCreateFlags = []cli.Flag{
cli.StringFlag{
Name: "driver",
Usage: "Specify volume driver name (default local)",
},
cli.StringSliceFlag{
Name: "label, l",
Usage: "Set metadata for a volume (default [])",
},
cli.StringSliceFlag{
Name: "opt, o",
Usage: "Set driver specific options (default [])",
},
}
var volumeCreateCommand = cli.Command{
Name: "create",
Usage: "Create a new volume",
Description: volumeCreateDescription,
Flags: volumeCreateFlags,
Action: volumeCreateCmd,
SkipArgReorder: true,
ArgsUsage: "[VOLUME-NAME]",
UseShortOptionHandling: true,
}
func volumeCreateCmd(c *cli.Context) error {
var (
options []libpod.VolumeCreateOption
err error
volName string
)
if err = validateFlags(c, volumeCreateFlags); err != nil {
return err
}
runtime, err := libpodruntime.GetRuntime(c)
if err != nil {
return errors.Wrapf(err, "error creating libpod runtime")
}
defer runtime.Shutdown(false)
if len(c.Args()) > 1 {
return errors.Errorf("too many arguments, create takes at most 1 argument")
}
if len(c.Args()) > 0 {
volName = c.Args()[0]
options = append(options, libpod.WithVolumeName(volName))
}
if c.IsSet("driver") {
options = append(options, libpod.WithVolumeDriver(c.String("driver")))
}
labels, err := getAllLabels([]string{}, c.StringSlice("label"))
if err != nil {
return errors.Wrapf(err, "unable to process labels")
}
if len(labels) != 0 {
options = append(options, libpod.WithVolumeLabels(labels))
}
opts, err := getAllLabels([]string{}, c.StringSlice("opt"))
if err != nil {
return errors.Wrapf(err, "unable to process options")
}
if len(options) != 0 {
options = append(options, libpod.WithVolumeOptions(opts))
}
vol, err := runtime.NewVolume(getContext(), options...)
if err != nil {
return err
}
fmt.Printf("%s\n", vol.Name())
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/derekhjray/podman.git
git@gitee.com:derekhjray/podman.git
derekhjray
podman
podman
v1.0.4

搜索帮助