diff options
author | baude <bbaude@redhat.com> | 2020-04-30 11:02:59 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-04-30 14:53:54 -0500 |
commit | e88a418528173c1bccc9bea6a9eaf3b389d57e47 (patch) | |
tree | eedbaca61136b8c3be2960a4486a780b69f71dd3 /cmd/podman/networks/inspect.go | |
parent | c31bf2e97644b76163624149bb130528c6a5a394 (diff) | |
download | podman-e88a418528173c1bccc9bea6a9eaf3b389d57e47.tar.gz podman-e88a418528173c1bccc9bea6a9eaf3b389d57e47.tar.bz2 podman-e88a418528173c1bccc9bea6a9eaf3b389d57e47.zip |
v2networking enable commands
Enable the networking commands for v2.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/networks/inspect.go')
-rw-r--r-- | cmd/podman/networks/inspect.go | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/cmd/podman/networks/inspect.go b/cmd/podman/networks/inspect.go new file mode 100644 index 000000000..0bc73579a --- /dev/null +++ b/cmd/podman/networks/inspect.go @@ -0,0 +1,46 @@ +package network + +import ( + "encoding/json" + "fmt" + + "github.com/containers/libpod/cmd/podman/registry" + "github.com/containers/libpod/pkg/domain/entities" + "github.com/spf13/cobra" +) + +var ( + networkinspectDescription = `Inspect network` + networkinspectCommand = &cobra.Command{ + Use: "inspect NETWORK [NETWORK...] [flags] ", + Short: "network inspect", + Long: networkinspectDescription, + RunE: networkInspect, + Example: `podman network inspect podman`, + Args: cobra.MinimumNArgs(1), + Annotations: map[string]string{ + registry.ParentNSRequired: "", + }, + } +) + +func init() { + registry.Commands = append(registry.Commands, registry.CliCommand{ + Mode: []entities.EngineMode{entities.ABIMode}, + Command: networkinspectCommand, + Parent: networkCmd, + }) +} + +func networkInspect(cmd *cobra.Command, args []string) error { + responses, err := registry.ContainerEngine().NetworkInspect(registry.Context(), args, entities.NetworkInspectOptions{}) + if err != nil { + return err + } + b, err := json.MarshalIndent(responses, "", " ") + if err != nil { + return err + } + fmt.Println(string(b)) + return nil +} |