server: Add sandbox to container info

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2017-09-01 11:50:18 -07:00
parent 35ada86b04
commit ec27f5b615

View file

@ -18,6 +18,7 @@ type ContainerInfo struct {
Annotations map[string]string `json:"annotations"` Annotations map[string]string `json:"annotations"`
LogPath string `json:"log_path"` LogPath string `json:"log_path"`
Root string `json:"root"` Root string `json:"root"`
Sandbox string `json:"sandbox"`
} }
// CrioInfo stores information about the crio daemon // CrioInfo stores information about the crio daemon
@ -65,6 +66,7 @@ func (s *Server) GetInfoMux() *bone.Mux {
Annotations: ctr.Annotations(), Annotations: ctr.Annotations(),
Root: ctr.MountPoint(), Root: ctr.MountPoint(),
LogPath: filepath.Dir(ctr.LogPath()), LogPath: filepath.Dir(ctr.LogPath()),
Sandbox: ctr.Sandbox(),
} }
js, err := json.Marshal(ci) js, err := json.Marshal(ci)
if err != nil { if err != nil {