From 16dfce486b45d5989dcba503cd0797bc7d66bee4 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Thu, 19 Aug 2021 17:33:20 +0200 Subject: Podman info output plugin information For docker compat include information about available volume, log and network drivers which should be listed under the plugins key. Fixes #11265 Signed-off-by: Paul Holzinger --- libpod/define/info.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libpod/define') diff --git a/libpod/define/info.go b/libpod/define/info.go index de709be74..95c1196dd 100644 --- a/libpod/define/info.go +++ b/libpod/define/info.go @@ -8,6 +8,7 @@ type Info struct { Host *HostInfo `json:"host"` Store *StoreInfo `json:"store"` Registries map[string]interface{} `json:"registries"` + Plugins Plugins `json:"plugins"` Version Version `json:"version"` } @@ -123,3 +124,11 @@ type ContainerStore struct { Running int `json:"running"` Stopped int `json:"stopped"` } + +type Plugins struct { + Volume []string `json:"volume"` + Network []string `json:"network"` + Log []string `json:"log"` + // FIXME what should we do with Authorization, docker seems to return nothing by default + // Authorization []string `json:"authorization"` +} -- cgit v1.2.3-54-g00ecf