Set the version to what kubelet expects

Signed-off-by: Mrunal Patel <mpatel@redhat.com>
This commit is contained in:
Mrunal Patel 2016-10-20 14:51:38 -04:00
parent 0ef2fc937b
commit 0b76a65033

View file

@ -1,8 +1,8 @@
package server
import (
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
"golang.org/x/net/context"
pb "k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
)
// Version returns the runtime name, runtime version and runtime API version
@ -17,6 +17,9 @@ func (s *Server) Version(ctx context.Context, req *pb.VersionRequest) (*pb.Versi
return nil, err
}
// TODO: Track upstream code. For now it expects 0.1.0
version = "0.1.0"
// taking const address
rav := runtimeAPIVersion
runtimeName := s.runtime.Name()