diff options
author | baude <bbaude@redhat.com> | 2018-09-27 12:45:01 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2018-09-28 10:48:16 -0500 |
commit | 6db7027e975029bc8c50fef958452d502620edea (patch) | |
tree | 3b55f94a0f2d1deb82431abfc59476b07a91dafb /API.md | |
parent | ca8469aace64d71fdb1849607d8227c31a3cf4da (diff) | |
download | podman-6db7027e975029bc8c50fef958452d502620edea.tar.gz podman-6db7027e975029bc8c50fef958452d502620edea.tar.bz2 podman-6db7027e975029bc8c50fef958452d502620edea.zip |
Add buildah version and distribution to info
For the sake of debug and problem reporting, we would benefit from knowing
what buildah version was vendored into podman. Also, knowing the distribution
and distribution version would also be handy.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -141,6 +141,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [type ImageSearch](#ImageSearch) +[type InfoDistribution](#InfoDistribution) + [type InfoGraphStatus](#InfoGraphStatus) [type InfoHost](#InfoHost) @@ -1115,6 +1117,13 @@ is_automated [bool](https://godoc.org/builtin#bool) name [string](https://godoc.org/builtin#string) star_count [int](https://godoc.org/builtin#int) +### <a name="InfoDistribution"></a>type InfoDistribution + +InfoDistribution describes the the host's distribution + +distribution [string](https://godoc.org/builtin#string) + +version [string](https://godoc.org/builtin#string) ### <a name="InfoGraphStatus"></a>type InfoGraphStatus InfoGraphStatus describes the detailed status of the storage driver @@ -1128,6 +1137,10 @@ supports_d_type [string](https://godoc.org/builtin#string) InfoHost describes the host stats portion of PodmanInfo +buildah_version [string](https://godoc.org/builtin#string) + +distribution [InfoDistribution](#InfoDistribution) + mem_free [int](https://godoc.org/builtin#int) mem_total [int](https://godoc.org/builtin#int) |