summaryrefslogtreecommitdiff
path: root/server/runtime_status.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-11-01 13:22:04 -0400
committerMatthew Heon <matthew.heon@gmail.com>2017-11-01 13:22:04 -0400
commitc13f61798aa7bcf7b4de7ee31aa30148a3b08d97 (patch)
tree6f0c3297f91ecbe259d8dc5ff1b0ab3d63e44744 /server/runtime_status.go
parent92b31c0ff7c75fab3b875fb6b10c14f8e2c031e7 (diff)
downloadpodman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.tar.gz
podman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.tar.bz2
podman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.zip
Prune Server package. Convert to new github location.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'server/runtime_status.go')
-rw-r--r--server/runtime_status.go41
1 files changed, 0 insertions, 41 deletions
diff --git a/server/runtime_status.go b/server/runtime_status.go
deleted file mode 100644
index 67fc87b6f..000000000
--- a/server/runtime_status.go
+++ /dev/null
@@ -1,41 +0,0 @@
-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
-}