diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-01-06 17:00:21 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-01-07 19:38:46 -0500 |
commit | d52a4dc2d48e0c660fea1449e9d24aa4acf5fe8a (patch) | |
tree | e03909f81a8774aa4e231e1895d43d635692de04 /API.md | |
parent | c41fd09a8da3a96bc0e58f9f29f87b9bdf30264d (diff) | |
download | podman-d52a4dc2d48e0c660fea1449e9d24aa4acf5fe8a.tar.gz podman-d52a4dc2d48e0c660fea1449e9d24aa4acf5fe8a.tar.bz2 podman-d52a4dc2d48e0c660fea1449e9d24aa4acf5fe8a.zip |
Fix podman-remote info to show registry data
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'API.md')
-rwxr-xr-x | API.md | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -235,6 +235,8 @@ in the [API.md](https://github.com/containers/libpod/blob/master/API.md) file in [type InfoPodmanBinary](#InfoPodmanBinary) +[type InfoRegistry](#InfoRegistry) + [type InfoStore](#InfoStore) [type KubePodService](#KubePodService) @@ -1840,6 +1842,15 @@ 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="InfoRegistry"></a>type InfoRegistry + +InfoRegistry describes the host's registry information + +search [[]string](#[]string) + +insecure [[]string](#[]string) + +blocked [[]string](#[]string) ### <a name="InfoStore"></a>type InfoStore InfoStore describes the host's storage informatoin @@ -1952,9 +1963,7 @@ PodmanInfo describes the Podman host and build host [InfoHost](#InfoHost) -registries [[]string](#[]string) - -insecure_registries [[]string](#[]string) +registries [InfoRegistry](#InfoRegistry) store [InfoStore](#InfoStore) |