aboutsummaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-14 17:14:12 +0200
committerGitHub <noreply@github.com>2020-04-14 17:14:12 +0200
commit246ee9320114e6adefabe0c8d5f5fc22d948cf31 (patch)
tree636e7c557dc8097a6a08ab6b9951e1b7fc09c640 /pkg/domain/infra/tunnel
parente2a137327c09a4fb3540d9bc9bda7685d4df0500 (diff)
parentd625aef0c54a5afbe2d2fbdd7c26f6b45d99c8f5 (diff)
downloadpodman-246ee9320114e6adefabe0c8d5f5fc22d948cf31.tar.gz
podman-246ee9320114e6adefabe0c8d5f5fc22d948cf31.tar.bz2
podman-246ee9320114e6adefabe0c8d5f5fc22d948cf31.zip
Merge pull request #5801 from baude/v2mount
podmanv2 mount and umount
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r--pkg/domain/infra/tunnel/containers.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/containers.go b/pkg/domain/infra/tunnel/containers.go
index 1a430e3d0..fb75a03d9 100644
--- a/pkg/domain/infra/tunnel/containers.go
+++ b/pkg/domain/infra/tunnel/containers.go
@@ -354,3 +354,11 @@ func (ic *ContainerEngine) ContainerInit(ctx context.Context, namesOrIds []strin
}
return reports, nil
}
+
+func (ic *ContainerEngine) ContainerMount(ctx context.Context, nameOrIds []string, options entities.ContainerMountOptions) ([]*entities.ContainerMountReport, error) {
+ return nil, errors.New("mounting containers is not supported for remote clients")
+}
+
+func (ic *ContainerEngine) ContainerUnmount(ctx context.Context, nameOrIds []string, options entities.ContainerUnmountOptions) ([]*entities.ContainerUnmountReport, error) {
+ return nil, errors.New("unmounting containers is not supported for remote clients")
+}