spiegel_podman/cmd/podman/volumes/create.go
Paul Holzinger b5d1d89a37 Add shell completion with cobra
Allow automatic generation for shell completion scripts
with the internal cobra functions (requires v1.0.0+).

This should replace the handwritten completion scripts
and even adds support for fish. With this approach it is
less likley that completions and code are out of sync.

We can now create the scripts with
- podman completion bash
- podman completion zsh
- podman completion fish

To test the completion run:
source <(podman completion bash)

The same works for podman-remote and podman --remote and
it will complete your remote containers/images with
the correct endpoints values from --url/--connection.

The completion logic is written in go and provided by the
cobra library. The completion functions lives in
`cmd/podman/completion/completion.go`.

The unit test at cmd/podman/shell_completion_test.go checks
if each command and flag has an autocompletion function set.
This prevents that commands and flags have no shell completion set.

This commit does not replace the current autocompletion scripts.

Closes #6440

Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
2020-11-12 11:38:31 +01:00

83 lines
2.5 KiB
Go

package volumes
import (
"context"
"fmt"
"github.com/containers/common/pkg/completion"
"github.com/containers/podman/v2/cmd/podman/parse"
"github.com/containers/podman/v2/cmd/podman/registry"
"github.com/containers/podman/v2/pkg/domain/entities"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
var (
createDescription = `If using the default driver, "local", the volume will be created on the host in the volumes directory under container storage.`
createCommand = &cobra.Command{
Use: "create [options] [NAME]",
Short: "Create a new volume",
Long: createDescription,
RunE: create,
ValidArgsFunction: completion.AutocompleteNone,
Example: `podman volume create myvol
podman volume create
podman volume create --label foo=bar myvol`,
}
)
var (
createOpts = entities.VolumeCreateOptions{}
opts = struct {
Label []string
Opts []string
}{}
)
func init() {
registry.Commands = append(registry.Commands, registry.CliCommand{
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
Command: createCommand,
Parent: volumeCmd,
})
flags := createCommand.Flags()
driverFlagName := "driver"
flags.StringVar(&createOpts.Driver, driverFlagName, "local", "Specify volume driver name")
_ = createCommand.RegisterFlagCompletionFunc(driverFlagName, completion.AutocompleteNone)
labelFlagName := "label"
flags.StringSliceVarP(&opts.Label, labelFlagName, "l", []string{}, "Set metadata for a volume (default [])")
_ = createCommand.RegisterFlagCompletionFunc(labelFlagName, completion.AutocompleteNone)
optFlagName := "opt"
flags.StringArrayVarP(&opts.Opts, optFlagName, "o", []string{}, "Set driver specific options (default [])")
_ = createCommand.RegisterFlagCompletionFunc(optFlagName, completion.AutocompleteNone)
}
func create(cmd *cobra.Command, args []string) error {
var (
err error
)
if len(args) > 1 {
return errors.Errorf("too many arguments, create takes at most 1 argument")
}
if len(args) > 0 {
createOpts.Name = args[0]
}
createOpts.Label, err = parse.GetAllLabels([]string{}, opts.Label)
if err != nil {
return errors.Wrapf(err, "unable to process labels")
}
createOpts.Options, err = parse.GetAllLabels([]string{}, opts.Opts)
if err != nil {
return errors.Wrapf(err, "unable to process options")
}
response, err := registry.ContainerEngine().VolumeCreate(context.Background(), createOpts)
if err != nil {
return err
}
fmt.Println(response.IDOrName)
return nil
}