mirror of
https://github.com/containers/podman.git
synced 2025-05-19 16:18:51 +08:00
format option added to network inspect command.
This helps user to print the inspect output in go template format. Signed-off-by: Kunal Kushwaha <kunal.kushwaha@gmail.com>
This commit is contained in:
@ -3,6 +3,10 @@ package network
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"html/template"
|
||||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
|
||||
"github.com/containers/libpod/cmd/podman/registry"
|
||||
"github.com/containers/libpod/pkg/domain/entities"
|
||||
@ -24,12 +28,18 @@ var (
|
||||
}
|
||||
)
|
||||
|
||||
var (
|
||||
networkInspectOptions entities.NetworkInspectOptions
|
||||
)
|
||||
|
||||
func init() {
|
||||
registry.Commands = append(registry.Commands, registry.CliCommand{
|
||||
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
||||
Command: networkinspectCommand,
|
||||
Parent: networkCmd,
|
||||
})
|
||||
flags := networkinspectCommand.Flags()
|
||||
flags.StringVarP(&networkInspectOptions.Format, "format", "f", "", "Pretty-print network to JSON or using a Go template")
|
||||
}
|
||||
|
||||
func networkInspect(cmd *cobra.Command, args []string) error {
|
||||
@ -41,6 +51,22 @@ func networkInspect(cmd *cobra.Command, args []string) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
fmt.Println(string(b))
|
||||
if strings.ToLower(networkInspectOptions.Format) == "json" || networkInspectOptions.Format == "" {
|
||||
fmt.Println(string(b))
|
||||
} else {
|
||||
var w io.Writer = os.Stdout
|
||||
//There can be more than 1 in the inspect output.
|
||||
format := "{{range . }}" + networkInspectOptions.Format + "{{end}}"
|
||||
tmpl, err := template.New("inspectNetworks").Parse(format)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if err := tmpl.Execute(w, responses); err != nil {
|
||||
return err
|
||||
}
|
||||
if flusher, ok := w.(interface{ Flush() error }); ok {
|
||||
return flusher.Flush()
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -9,6 +9,15 @@ podman\-network\-inspect - Displays the raw CNI network configuration for one or
|
||||
## DESCRIPTION
|
||||
Display the raw (JSON format) network configuration. This command is not available for rootless users.
|
||||
|
||||
## OPTIONS
|
||||
**--quiet**, **-q**
|
||||
|
||||
The `quiet` option will restrict the output to only the network names.
|
||||
|
||||
**--format**, **-f**
|
||||
|
||||
Pretty-print networks to JSON or using a Go template.
|
||||
|
||||
## EXAMPLE
|
||||
|
||||
Inspect the default podman network
|
||||
@ -43,6 +52,11 @@ Inspect the default podman network
|
||||
]
|
||||
```
|
||||
|
||||
```
|
||||
# podman network inspect podman --format '{{(index .plugins 0).ipam.ranges}}'
|
||||
[[map[gateway:10.88.0.1 subnet:10.88.0.0/16]]]
|
||||
```
|
||||
|
||||
## SEE ALSO
|
||||
podman(1), podman-network(1), podman-network-ls(1)
|
||||
|
||||
|
Reference in New Issue
Block a user