summaryrefslogtreecommitdiff
path: root/cmd/podman/volume_create.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-03-11 11:43:03 -0700
committerGitHub <noreply@github.com>2019-03-11 11:43:03 -0700
commit7038cac53c4c93cd088fdbb097eee8d45494c3b8 (patch)
tree958df194bdd61cc209efa0480ea52634149f6250 /cmd/podman/volume_create.go
parentb8863b260a7885981def2b02b5acc7c9a209e0c6 (diff)
parent651520389d239f335248a27595d39a815ef95238 (diff)
downloadpodman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.gz
podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.tar.bz2
podman-7038cac53c4c93cd088fdbb097eee8d45494c3b8.zip
Merge pull request #2578 from baude/movecreate
preparation for remote-client create container
Diffstat (limited to 'cmd/podman/volume_create.go')
-rw-r--r--cmd/podman/volume_create.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd/podman/volume_create.go b/cmd/podman/volume_create.go
index d873f9806..8f6237272 100644
--- a/cmd/podman/volume_create.go
+++ b/cmd/podman/volume_create.go
@@ -4,6 +4,7 @@ import (
"fmt"
"github.com/containers/libpod/cmd/podman/cliconfig"
+ "github.com/containers/libpod/cmd/podman/shared"
"github.com/containers/libpod/pkg/adapter"
"github.com/pkg/errors"
"github.com/spf13/cobra"
@@ -50,12 +51,12 @@ func volumeCreateCmd(c *cliconfig.VolumeCreateValues) error {
return errors.Errorf("too many arguments, create takes at most 1 argument")
}
- labels, err := getAllLabels([]string{}, c.Label)
+ labels, err := shared.GetAllLabels([]string{}, c.Label)
if err != nil {
return errors.Wrapf(err, "unable to process labels")
}
- opts, err := getAllLabels([]string{}, c.Opt)
+ opts, err := shared.GetAllLabels([]string{}, c.Opt)
if err != nil {
return errors.Wrapf(err, "unable to process options")
}