diff options
author | Matthew Heon <matthew.heon@pm.me> | 2020-05-08 14:45:32 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2020-05-08 14:45:32 -0400 |
commit | 26f48139cea99c24222367a576f56dcd7329943d (patch) | |
tree | 577e7ead230a4fec3a561088f9b7e8eb1bd307d6 /cmd/podman | |
parent | aa74c3f09223107b85b6538a1ffe1e359ff51a65 (diff) | |
download | podman-26f48139cea99c24222367a576f56dcd7329943d.tar.gz podman-26f48139cea99c24222367a576f56dcd7329943d.tar.bz2 podman-26f48139cea99c24222367a576f56dcd7329943d.zip |
Add remaining annotations for `podman inspect`
This should finish support for `podman inspect` in APIv2.
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/common/specgen.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/podman/common/specgen.go b/cmd/podman/common/specgen.go index ff7c39de2..664e66df8 100644 --- a/cmd/podman/common/specgen.go +++ b/cmd/podman/common/specgen.go @@ -519,6 +519,10 @@ func FillOutSpecGen(s *specgen.SpecGenerator, c *ContainerCLIOpts, args []string } s.Sysctl = sysmap + if c.CIDFile != "" { + s.Annotations[define.InspectAnnotationCIDFile] = c.CIDFile + } + for _, opt := range c.SecurityOpt { if opt == "no-new-privileges" { s.ContainerSecurityConfig.NoNewPrivileges = true |