summaryrefslogtreecommitdiff
path: root/cmd/kpod/create.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2017-12-11 14:00:46 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2017-12-12 14:24:13 +0000
commit88121e0747c03084c233d22fadfd3c227e73a885 (patch)
tree88d7c00212dd97775dd2ae9d791fc9fc62e28402 /cmd/kpod/create.go
parent7f5aa42de01d9154440cd7f0929ec1eff83bd2d2 (diff)
downloadpodman-88121e0747c03084c233d22fadfd3c227e73a885.tar.gz
podman-88121e0747c03084c233d22fadfd3c227e73a885.tar.bz2
podman-88121e0747c03084c233d22fadfd3c227e73a885.zip
We don't support VolumesFrom or links
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #118 Approved by: mheon
Diffstat (limited to 'cmd/kpod/create.go')
-rw-r--r--cmd/kpod/create.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/cmd/kpod/create.go b/cmd/kpod/create.go
index 1b340f96d..fc6e519fa 100644
--- a/cmd/kpod/create.go
+++ b/cmd/kpod/create.go
@@ -115,7 +115,6 @@ type createConfig struct {
group uint32 // group
utsMode container.UTSMode //uts
volumes []string //volume
- volumesFrom []string //volumes-from
workDir string //workdir
mountLabel string //SecurityOpts
processLabel string //SecurityOpts
@@ -478,7 +477,6 @@ func parseCreateOpts(c *cli.Context, runtime *libpod.Runtime) (*createConfig, er
user: uid,
group: gid,
volumes: c.StringSlice("volume"),
- volumesFrom: c.StringSlice("volumes-from"),
workDir: c.String("workdir"),
}