diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-09-28 11:09:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 11:09:08 -0700 |
commit | 77d80228481d1902be0a9ed30622189b54d2e3b0 (patch) | |
tree | 3b55f94a0f2d1deb82431abfc59476b07a91dafb /API.md | |
parent | ca8469aace64d71fdb1849607d8227c31a3cf4da (diff) | |
parent | 6db7027e975029bc8c50fef958452d502620edea (diff) | |
download | podman-77d80228481d1902be0a9ed30622189b54d2e3b0.tar.gz podman-77d80228481d1902be0a9ed30622189b54d2e3b0.tar.bz2 podman-77d80228481d1902be0a9ed30622189b54d2e3b0.zip |
Merge pull request #1561 from baude/addbuildahdisttoinfo
Add buildah version and distribution to info
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) |