2016-11-22 22:23:01 +00:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/kubernetes-incubator/cri-o/oci"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PodSandboxStatus returns the Status of the PodSandbox.
|
|
|
|
func (s *Server) PodSandboxStatus(ctx context.Context, req *pb.PodSandboxStatusRequest) (*pb.PodSandboxStatusResponse, error) {
|
|
|
|
logrus.Debugf("PodSandboxStatusRequest %+v", req)
|
2017-02-03 14:41:28 +00:00
|
|
|
sb, err := s.getPodSandboxFromRequest(req.PodSandboxId)
|
2016-11-22 22:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
podInfraContainer := sb.infraContainer
|
|
|
|
if err = s.runtime.UpdateStatus(podInfraContainer); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-11 10:41:08 +00:00
|
|
|
s.containerStateToDisk(podInfraContainer)
|
2016-11-22 22:23:01 +00:00
|
|
|
|
|
|
|
cState := s.runtime.ContainerStatus(podInfraContainer)
|
|
|
|
|
|
|
|
netNsPath, err := podInfraContainer.NetNsPath()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-04 16:41:15 +00:00
|
|
|
ip, err := s.netPlugin.GetContainerNetworkStatus(netNsPath, sb.namespace, sb.kubeName, sb.id)
|
2016-11-22 22:23:01 +00:00
|
|
|
if err != nil {
|
|
|
|
// ignore the error on network status
|
|
|
|
ip = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
rStatus := pb.PodSandboxState_SANDBOX_NOTREADY
|
|
|
|
if cState.Status == oci.ContainerStateRunning {
|
|
|
|
rStatus = pb.PodSandboxState_SANDBOX_READY
|
|
|
|
}
|
|
|
|
|
|
|
|
sandboxID := sb.id
|
|
|
|
resp := &pb.PodSandboxStatusResponse{
|
|
|
|
Status: &pb.PodSandboxStatus{
|
2017-02-03 14:41:28 +00:00
|
|
|
Id: sandboxID,
|
2017-05-11 09:22:47 +00:00
|
|
|
CreatedAt: podInfraContainer.CreatedAt().UnixNano(),
|
2016-11-22 22:23:01 +00:00
|
|
|
Linux: &pb.LinuxPodSandboxStatus{
|
|
|
|
Namespaces: &pb.Namespace{
|
2017-02-03 14:41:28 +00:00
|
|
|
Network: netNsPath,
|
2016-11-22 22:23:01 +00:00
|
|
|
},
|
|
|
|
},
|
2017-02-03 14:41:28 +00:00
|
|
|
Network: &pb.PodSandboxNetworkStatus{Ip: ip},
|
|
|
|
State: rStatus,
|
2016-11-22 22:23:01 +00:00
|
|
|
Labels: sb.labels,
|
|
|
|
Annotations: sb.annotations,
|
|
|
|
Metadata: sb.metadata,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
logrus.Infof("PodSandboxStatusResponse: %+v", resp)
|
|
|
|
return resp, nil
|
|
|
|
}
|