We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ada86 commit ec27f5bCopy full SHA for ec27f5b
server/inspect.go
@@ -18,6 +18,7 @@ type ContainerInfo struct {
18
Annotations map[string]string `json:"annotations"`
19
LogPath string `json:"log_path"`
20
Root string `json:"root"`
21
+ Sandbox string `json:"sandbox"`
22
}
23
24
// CrioInfo stores information about the crio daemon
@@ -65,6 +66,7 @@ func (s *Server) GetInfoMux() *bone.Mux {
65
66
Annotations: ctr.Annotations(),
67
Root: ctr.MountPoint(),
68
LogPath: filepath.Dir(ctr.LogPath()),
69
+ Sandbox: ctr.Sandbox(),
70
71
js, err := json.Marshal(ci)
72
if err != nil {
0 commit comments