diff options
author | baude <bbaude@redhat.com> | 2019-01-21 15:18:13 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-01-21 15:23:30 -0600 |
commit | 5c8e7ed0dee117c9d423849f09f82d15957893a8 (patch) | |
tree | f5244f8cabf513a409a69b72f2c97d0d0e5d996c /pkg/varlinkapi/system.go | |
parent | ba3509665c16365870ae2c50c6798c0e8489cb78 (diff) | |
download | podman-5c8e7ed0dee117c9d423849f09f82d15957893a8.tar.gz podman-5c8e7ed0dee117c9d423849f09f82d15957893a8.tar.bz2 podman-5c8e7ed0dee117c9d423849f09f82d15957893a8.zip |
enable podman-remote version
initial enablement of podman-remote version. includes add a APIVersion const
that will allow us to check compatibility between host/client when connections
are made.
also added client related information to podman info.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/varlinkapi/system.go')
-rw-r--r-- | pkg/varlinkapi/system.go | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pkg/varlinkapi/system.go b/pkg/varlinkapi/system.go index e50643dd0..376502f21 100644 --- a/pkg/varlinkapi/system.go +++ b/pkg/varlinkapi/system.go @@ -16,11 +16,12 @@ func (i *LibpodAPI) GetVersion(call iopodman.VarlinkCall) error { } return call.ReplyGetVersion(iopodman.Version{ - Version: versionInfo.Version, - Go_version: versionInfo.GoVersion, - Git_commit: versionInfo.GitCommit, - Built: versionInfo.Built, - Os_arch: versionInfo.OsArch, + Remote_api_version: versionInfo.RemoteAPIVersion, + Version: versionInfo.Version, + Go_version: versionInfo.GoVersion, + Git_commit: versionInfo.GitCommit, + Built: versionInfo.Built, + Os_arch: versionInfo.OsArch, }) } |