diff options
author | baude <bbaude@redhat.com> | 2018-05-10 13:41:23 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-05-11 14:00:25 +0000 |
commit | 834f1f641eaaebd6a9f014617be0d74d409cd2b1 (patch) | |
tree | 4ee23a0405fd171c7a67f91fb166a1071ba40065 /API.md | |
parent | f97de48be47b838744aecd72c73b92a1b0be5cbd (diff) | |
download | podman-834f1f641eaaebd6a9f014617be0d74d409cd2b1.tar.gz podman-834f1f641eaaebd6a9f014617be0d74d409cd2b1.tar.bz2 podman-834f1f641eaaebd6a9f014617be0d74d409cd2b1.zip |
varlink info
The varlinfo info returns the same information as podman info but always includes
the so-called debug information.
Signed-off-by: baude <bbaude@redhat.com>
Closes: #745
Approved by: baude
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 91 |
1 files changed, 91 insertions, 0 deletions
@@ -33,6 +33,8 @@ in the [API.md](https://github.com/projectatomic/libpod/blob/master/API.md) file [func ImportImage(source: string, reference: string, message: string, changes: []string) string](#ImportImage) +[func Info() PodmanInfo](#Info) + [func InspectContainer(name: string) string](#InspectContainer) [func InspectImage(name: string) string](#InspectImage) @@ -94,10 +96,20 @@ in the [API.md](https://github.com/projectatomic/libpod/blob/master/API.md) file [type ImageSearch](#ImageSearch) +[type InfoGraphStatus](#InfoGraphStatus) + +[type InfoHost](#InfoHost) + +[type InfoPodmanBinary](#InfoPodmanBinary) + +[type InfoStore](#InfoStore) + [type ListContainerData](#ListContainerData) [type NotImplemented](#NotImplemented) +[type PodmanInfo](#PodmanInfo) + [type StringResponse](#StringResponse) [type Version](#Version) @@ -225,6 +237,12 @@ history is in the form of an array of ImageHistory structures. If the image can method ImportImage(source: [string](https://godoc.org/builtin#string), reference: [string](https://godoc.org/builtin#string), message: [string](https://godoc.org/builtin#string), changes: [[]string](#[]string)) [string](https://godoc.org/builtin#string)</div> ImportImage imports an image from a source (like tarball) into local storage. The image can have additional descriptions added to it using the message and changes options. See also [ExportImage](ExportImage). +### <a name="Info"></a>func Info +<div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> + +method Info() [PodmanInfo](#PodmanInfo)</div> +Info returns a [PodmanInfo](#PodmanInfo) struct that describes podman and its host such as storage stats, +build information of Podman, and system-wide registries. ### <a name="InspectContainer"></a>func InspectContainer <div style="background-color: #E8E8E8; padding: 15px; margin: 10px; border-radius: 10px;"> @@ -555,6 +573,66 @@ 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="InfoGraphStatus"></a>type InfoGraphStatus + +InfoGraphStatus describes the detailed status of the graphc + +backing_filesystem [string](https://godoc.org/builtin#string) + +native_overlay_diff [string](https://godoc.org/builtin#string) + +supports_d_type [string](https://godoc.org/builtin#string) +### <a name="InfoHost"></a>type InfoHost + +InfoHost describes the host stats portion of PodmanInfo + +mem_free [int](https://godoc.org/builtin#int) + +mem_total [int](https://godoc.org/builtin#int) + +swap_free [int](https://godoc.org/builtin#int) + +swap_total [int](https://godoc.org/builtin#int) + +arch [string](https://godoc.org/builtin#string) + +cpus [int](https://godoc.org/builtin#int) + +hostname [string](https://godoc.org/builtin#string) + +kernel [string](https://godoc.org/builtin#string) + +os [string](https://godoc.org/builtin#string) + +uptime [string](https://godoc.org/builtin#string) +### <a name="InfoPodmanBinary"></a>type InfoPodmanBinary + +InfoPodman provides details on the podman binary + +compiler [string](https://godoc.org/builtin#string) + +go_version [string](https://godoc.org/builtin#string) + +podman_version [string](https://godoc.org/builtin#string) + +git_commit [string](https://godoc.org/builtin#string) +### <a name="InfoStore"></a>type InfoStore + +InfoStore describes the host's storage informatoin + +containers [int](https://godoc.org/builtin#int) + +images [int](https://godoc.org/builtin#int) + +graph_driver_name [string](https://godoc.org/builtin#string) + +graph_driver_options [string](https://godoc.org/builtin#string) + +graph_root [string](https://godoc.org/builtin#string) + +graph_status [InfoGraphStatus](#InfoGraphStatus) + +run_root [string](https://godoc.org/builtin#string) ### <a name="ListContainerData"></a>type ListContainerData ListContainer is the returned struct for an individual container @@ -593,6 +671,19 @@ namespaces [ContainerNameSpace](#ContainerNameSpace) comment [string](https://godoc.org/builtin#string) +### <a name="PodmanInfo"></a>type PodmanInfo + +PodmanInfo describes the Podman host and build + +host [InfoHost](#InfoHost) + +registries [[]string](#[]string) + +insecure_registries [[]string](#[]string) + +store [InfoStore](#InfoStore) + +podman [InfoPodmanBinary](#InfoPodmanBinary) ### <a name="StringResponse"></a>type StringResponse |