diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-04-24 14:14:26 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-05-01 10:19:05 -0400 |
commit | 30257cf07314404cba90b1972bf75db5812971fd (patch) | |
tree | eff4b774189d78e76d74320a126667865a002261 /libpod/options.go | |
parent | 2698c82240e4b9be5aaac787f8008fd6b74f645b (diff) | |
download | podman-30257cf07314404cba90b1972bf75db5812971fd.tar.gz podman-30257cf07314404cba90b1972bf75db5812971fd.tar.bz2 podman-30257cf07314404cba90b1972bf75db5812971fd.zip |
Ensure that named volumes have their options parsed
This involves moving some code out of pkg/spec/ into util/ so it
can also be used by libpod.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/options.go')
-rw-r--r-- | libpod/options.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpod/options.go b/libpod/options.go index 9932d5453..dde9bc64c 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -11,6 +11,7 @@ import ( "github.com/containers/image/manifest" "github.com/containers/libpod/pkg/namespaces" "github.com/containers/libpod/pkg/rootless" + "github.com/containers/libpod/pkg/util" "github.com/containers/storage" "github.com/containers/storage/pkg/idtools" "github.com/cri-o/ocicni/pkg/ocicni" @@ -1288,7 +1289,7 @@ func WithNamedVolumes(volumes []*ContainerNamedVolume) CtrCreateOption { ctr.config.NamedVolumes = append(ctr.config.NamedVolumes, &ContainerNamedVolume{ Name: vol.Name, Dest: vol.Dest, - Options: vol.Options, + Options: util.ProcessOptions(vol.Options), }) } |