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 /cmd/podman | |
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 'cmd/podman')
-rw-r--r-- | cmd/podman/varlink/io.podman.varlink | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cmd/podman/varlink/io.podman.varlink b/cmd/podman/varlink/io.podman.varlink index 1bacd2de6..ec984b535 100644 --- a/cmd/podman/varlink/io.podman.varlink +++ b/cmd/podman/varlink/io.podman.varlink @@ -245,6 +245,13 @@ type InfoGraphStatus ( supports_d_type: string ) +# InfoRegistry describes the host's registry information +type InfoRegistry ( + search: []string, + insecure: []string, + blocked: []string +) + # InfoStore describes the host's storage informatoin type InfoStore ( containers: int, @@ -267,8 +274,7 @@ type InfoPodmanBinary ( # PodmanInfo describes the Podman host and build type PodmanInfo ( host: InfoHost, - registries: []string, - insecure_registries: []string, + registries: InfoRegistry, store: InfoStore, podman: InfoPodmanBinary ) |