mirror of
https://github.com/containers/podman.git
synced 2025-05-21 00:56:36 +08:00
Populate remaining unused fields in pod inspect
We were hard-coding two fields to false, instead of grabbing their value from the pod config, which means that `pod inspect` would print the wrong value always. Fixes #6968 Signed-off-by: Matthew Heon <mheon@redhat.com>
This commit is contained in:
@ -535,10 +535,10 @@ func (p *Pod) Inspect() (*define.InspectPodData, error) {
|
||||
State: podState,
|
||||
Hostname: p.config.Hostname,
|
||||
Labels: p.Labels(),
|
||||
CreateCgroup: false,
|
||||
CreateCgroup: p.config.UsePodCgroup,
|
||||
CgroupParent: p.CgroupParent(),
|
||||
CgroupPath: p.state.CgroupPath,
|
||||
CreateInfra: false,
|
||||
CreateInfra: infraConfig != nil,
|
||||
InfraContainerID: p.state.InfraContainerID,
|
||||
InfraConfig: infraConfig,
|
||||
SharedNamespaces: sharesNS,
|
||||
|
Reference in New Issue
Block a user