diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-09 23:04:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-09 23:04:23 +0200 |
commit | 3ff96383f306cecfeed75986078144ad757e3d70 (patch) | |
tree | 301a71ee7621be9d6bfd1b77552c1574f5fc18d2 /pkg/domain/infra/tunnel | |
parent | 2a6487c4aaa312e9284d223540e971b109d0fcf2 (diff) | |
parent | 931bd5ace6d6efa19e0b123d8d70b273ea79d5ab (diff) | |
download | podman-3ff96383f306cecfeed75986078144ad757e3d70.tar.gz podman-3ff96383f306cecfeed75986078144ad757e3d70.tar.bz2 podman-3ff96383f306cecfeed75986078144ad757e3d70.zip |
Merge pull request #6148 from jwhonce/wip/version
V2 Implement tunnelled podman version
Diffstat (limited to 'pkg/domain/infra/tunnel')
-rw-r--r-- | pkg/domain/infra/tunnel/system.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/domain/infra/tunnel/system.go b/pkg/domain/infra/tunnel/system.go index d00795741..dafada805 100644 --- a/pkg/domain/infra/tunnel/system.go +++ b/pkg/domain/infra/tunnel/system.go @@ -34,3 +34,7 @@ func (ic *ContainerEngine) SystemDf(ctx context.Context, options entities.System func (ic *ContainerEngine) Unshare(ctx context.Context, args []string) error { return errors.New("unshare is not supported on remote clients") } + +func (ic ContainerEngine) Version(ctx context.Context) (*entities.SystemVersionReport, error) { + return system.Version(ic.ClientCxt) +} |