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.
2 parents 11fbcd2 + ec27f5b commit 8538c40Copy full SHA for 8538c40
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
@@ -68,6 +69,7 @@ func (s *Server) GetInfoMux() *bone.Mux {
68
69
Annotations: ctr.Annotations(),
70
Root: ctr.MountPoint(),
71
LogPath: filepath.Dir(ctr.LogPath()),
72
+ Sandbox: ctr.Sandbox(),
73
74
js, err := json.Marshal(ci)
75
if err != nil {
0 commit comments