diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-01 03:53:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 03:53:21 -0500 |
commit | 87d22e101465fa9e8d25653918328e768a92aa71 (patch) | |
tree | da115e8d159200a765c5eff9f3abfa56f3e49094 /cmd/podman/volumes/mount.go | |
parent | 86a057e6be434159e3e60add5a7a7d649e0b4ad5 (diff) | |
parent | 3dc1b8e83f2459a58d65f3bb918975cd6f1bb794 (diff) | |
download | podman-87d22e101465fa9e8d25653918328e768a92aa71.tar.gz podman-87d22e101465fa9e8d25653918328e768a92aa71.tar.bz2 podman-87d22e101465fa9e8d25653918328e768a92aa71.zip |
Merge pull request #13318 from rhatdan/volume
Add podman volume mount support
Diffstat (limited to 'cmd/podman/volumes/mount.go')
-rw-r--r-- | cmd/podman/volumes/mount.go | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/cmd/podman/volumes/mount.go b/cmd/podman/volumes/mount.go new file mode 100644 index 000000000..1f78187b8 --- /dev/null +++ b/cmd/podman/volumes/mount.go @@ -0,0 +1,51 @@ +package volumes + +import ( + "fmt" + + "github.com/containers/podman/v4/cmd/podman/common" + "github.com/containers/podman/v4/cmd/podman/registry" + "github.com/containers/podman/v4/cmd/podman/utils" + "github.com/spf13/cobra" +) + +var ( + volumeMountDescription = `Mount a volume and return the mountpoint` + volumeMountCommand = &cobra.Command{ + Annotations: map[string]string{ + registry.UnshareNSRequired: "", + registry.ParentNSRequired: "", + registry.EngineMode: registry.ABIMode, + }, + Use: "mount NAME", + Short: "Mount volume", + Long: volumeMountDescription, + RunE: volumeMount, + Example: `podman volume mount myvol`, + Args: cobra.ExactArgs(1), + ValidArgsFunction: common.AutocompleteVolumes, + } +) + +func init() { + registry.Commands = append(registry.Commands, registry.CliCommand{ + Command: volumeMountCommand, + Parent: volumeCmd, + }) +} + +func volumeMount(cmd *cobra.Command, args []string) error { + var errs utils.OutputErrors + reports, err := registry.ContainerEngine().VolumeMount(registry.GetContext(), args) + if err != nil { + return err + } + for _, r := range reports { + if r.Err == nil { + fmt.Println(r.Path) + continue + } + errs = append(errs, r.Err) + } + return errs.PrintErrors() +} |