summaryrefslogtreecommitdiff
path: root/pkg/inspect/inspect.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-07-20 08:49:30 -0400
committerMatthew Heon <matthew.heon@gmail.com>2018-07-24 16:12:31 -0400
commit486c5c87bca028ba41dfb9f516ae37b9d6a984cb (patch)
tree2279b83bf0237dda62434d0e7a1267936323e15b /pkg/inspect/inspect.go
parent7a358e427738294180a14b1298dfc3a569f0e0fc (diff)
downloadpodman-486c5c87bca028ba41dfb9f516ae37b9d6a984cb.tar.gz
podman-486c5c87bca028ba41dfb9f516ae37b9d6a984cb.tar.bz2
podman-486c5c87bca028ba41dfb9f516ae37b9d6a984cb.zip
Add missing runtime.go lines to set namespace
Also add namespace to inspect output to verify its presence Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'pkg/inspect/inspect.go')
-rw-r--r--pkg/inspect/inspect.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/inspect/inspect.go b/pkg/inspect/inspect.go
index 5b5a27c3d..d2c9e79a5 100644
--- a/pkg/inspect/inspect.go
+++ b/pkg/inspect/inspect.go
@@ -169,6 +169,7 @@ type ContainerInspectData struct {
Dependencies []string `json:"Dependencies"`
NetworkSettings *NetworkSettings `json:"NetworkSettings"` //TODO
ExitCommand []string `json:"ExitCommand"`
+ Namespace string `json:"Namespace"`
}
// ContainerInspectState represents the state of a container.