summaryrefslogtreecommitdiff
path: root/cmd/podman/cliconfig
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-08-16 17:33:31 +0200
committerGitHub <noreply@github.com>2019-08-16 17:33:31 +0200
commit704cc582ac37fbbb7c8241a1cc09540f4976ed12 (patch)
tree57bb887e113b307a39865eb38d2b733e01c59f1c /cmd/podman/cliconfig
parent2d47f1ae5425faa6800606092e997bd565dc3a1c (diff)
parent6220ef1488d3e135c332c265fdb6a3c7b240b561 (diff)
downloadpodman-704cc582ac37fbbb7c8241a1cc09540f4976ed12.tar.gz
podman-704cc582ac37fbbb7c8241a1cc09540f4976ed12.tar.bz2
podman-704cc582ac37fbbb7c8241a1cc09540f4976ed12.zip
Merge pull request #3719 from baude/networklist
inclusion of podman network
Diffstat (limited to 'cmd/podman/cliconfig')
-rw-r--r--cmd/podman/cliconfig/config.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmd/podman/cliconfig/config.go b/cmd/podman/cliconfig/config.go
index d5098ee51..f7c78908f 100644
--- a/cmd/podman/cliconfig/config.go
+++ b/cmd/podman/cliconfig/config.go
@@ -258,6 +258,20 @@ type MountValues struct {
Latest bool
}
+type NetworkListValues struct {
+ PodmanCommand
+ Filter []string
+ Quiet bool
+}
+
+type NetworkRmValues struct {
+ PodmanCommand
+}
+
+type NetworkInspectValues struct {
+ PodmanCommand
+}
+
type PauseValues struct {
PodmanCommand
All bool