summaryrefslogtreecommitdiff
path: root/server/runtime_status.go
blob: 67fc87b6f5a8c52a0f30d25fd7c7c7247c3a5876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package server

import (
	"golang.org/x/net/context"
	pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
)

// Status returns the status of the runtime
func (s *Server) Status(ctx context.Context, req *pb.StatusRequest) (*pb.StatusResponse, error) {

	// Deal with Runtime conditions
	runtimeReady, err := s.Runtime().RuntimeReady()
	if err != nil {
		return nil, err
	}
	networkReady, err := s.Runtime().NetworkReady()
	if err != nil {
		return nil, err
	}

	// Use vendored strings
	runtimeReadyConditionString := pb.RuntimeReady
	networkReadyConditionString := pb.NetworkReady

	resp := &pb.StatusResponse{
		Status: &pb.RuntimeStatus{
			Conditions: []*pb.RuntimeCondition{
				{
					Type:   runtimeReadyConditionString,
					Status: runtimeReady,
				},
				{
					Type:   networkReadyConditionString,
					Status: networkReady,
				},
			},
		},
	}

	return resp, nil
}