From a12990d4a088b100593501d2d9dce1be804135bf Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Mon, 12 Feb 2018 11:38:27 +0100 Subject: [PATCH] container_status: expose LogPath as requested by the CRI Signed-off-by: Antonio Murdaca --- server/container_status.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server/container_status.go b/server/container_status.go index 3b84468f..11edebb1 100644 --- a/server/container_status.go +++ b/server/container_status.go @@ -99,6 +99,7 @@ func (s *Server) ContainerStatus(ctx context.Context, req *pb.ContainerStatusReq } resp.Status.State = rStatus + resp.Status.LogPath = c.LogPath() logrus.Debugf("ContainerStatusResponse: %+v", resp) return resp, nil