Containerd client integration

This commit:
1) Replaces the usage of containerd GRPC APIs with the containerd client for all operations related to containerd.
2) Updated containerd to v1.0alpha4+
3) Updated runc to v1.0.0

Signed-off-by: Abhinandan Prativadi <abhi@docker.com>
This commit is contained in:
Abhinandan Prativadi
2017-08-04 09:55:36 -07:00
parent 2427d332f0
commit 32e0313418
170 changed files with 5819 additions and 7262 deletions

View File

@@ -1,64 +0,0 @@
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Automatically generated by MockGen. DO NOT EDIT!
// Source: google.golang.org/grpc/health/grpc_health_v1 (interfaces: HealthClient)
package testing
import (
gomock "github.com/golang/mock/gomock"
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
grpc_health_v1 "google.golang.org/grpc/health/grpc_health_v1"
)
// Mock of HealthClient interface
type MockHealthClient struct {
ctrl *gomock.Controller
recorder *_MockHealthClientRecorder
}
// Recorder for MockHealthClient (not exported)
type _MockHealthClientRecorder struct {
mock *MockHealthClient
}
func NewMockHealthClient(ctrl *gomock.Controller) *MockHealthClient {
mock := &MockHealthClient{ctrl: ctrl}
mock.recorder = &_MockHealthClientRecorder{mock}
return mock
}
func (_m *MockHealthClient) EXPECT() *_MockHealthClientRecorder {
return _m.recorder
}
func (_m *MockHealthClient) Check(_param0 context.Context, _param1 *grpc_health_v1.HealthCheckRequest, _param2 ...grpc.CallOption) (*grpc_health_v1.HealthCheckResponse, error) {
_s := []interface{}{_param0, _param1}
for _, _x := range _param2 {
_s = append(_s, _x)
}
ret := _m.ctrl.Call(_m, "Check", _s...)
ret0, _ := ret[0].(*grpc_health_v1.HealthCheckResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockHealthClientRecorder) Check(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
_s := append([]interface{}{arg0, arg1}, arg2...)
return _mr.mock.ctrl.RecordCall(_mr.mock, "Check", _s...)
}

View File

@@ -1,65 +0,0 @@
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/containerd/containerd/api/services/version (interfaces: VersionClient)
package testing
import (
version "github.com/containerd/containerd/api/services/version/v1"
gomock "github.com/golang/mock/gomock"
empty "github.com/golang/protobuf/ptypes/empty"
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Mock of VersionClient interface
type MockVersionClient struct {
ctrl *gomock.Controller
recorder *_MockVersionClientRecorder
}
// Recorder for MockVersionClient (not exported)
type _MockVersionClientRecorder struct {
mock *MockVersionClient
}
func NewMockVersionClient(ctrl *gomock.Controller) *MockVersionClient {
mock := &MockVersionClient{ctrl: ctrl}
mock.recorder = &_MockVersionClientRecorder{mock}
return mock
}
func (_m *MockVersionClient) EXPECT() *_MockVersionClientRecorder {
return _m.recorder
}
func (_m *MockVersionClient) Version(_param0 context.Context, _param1 *empty.Empty, _param2 ...grpc.CallOption) (*version.VersionResponse, error) {
_s := []interface{}{_param0, _param1}
for _, _x := range _param2 {
_s = append(_s, _x)
}
ret := _m.ctrl.Call(_m, "Version", _s...)
ret0, _ := ret[0].(*version.VersionResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockVersionClientRecorder) Version(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
_s := append([]interface{}{arg0, arg1}, arg2...)
return _mr.mock.ctrl.RecordCall(_mr.mock, "Version", _s...)
}