Bumping k8s dependencies to 1.13

This commit is contained in:
Cheng Xing
2018-11-16 14:08:25 -08:00
parent 305407125c
commit b4c0b68ec7
8002 changed files with 884099 additions and 276228 deletions

View File

@@ -11,44 +11,11 @@ go_library(
name = "go_default_library",
srcs = [
"doc.go",
"endpoint.go",
"endpoint_windows.go",
"fake_image_service.go",
"fake_runtime.go",
] + select({
"@io_bazel_rules_go//go/platform:android": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:darwin": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:dragonfly": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:freebsd": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:linux": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:nacl": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:netbsd": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:openbsd": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:plan9": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:solaris": [
"endpoint.go",
],
"@io_bazel_rules_go//go/platform:windows": [
"endpoint_windows.go",
],
"//conditions:default": [],
}),
],
importpath = "k8s.io/kubernetes/pkg/kubelet/remote/fake",
tags = ["automanaged"],
deps = [

View File

@@ -77,7 +77,7 @@ func (f *RemoteRuntime) Version(ctx context.Context, req *kubeapi.VersionRequest
// RunPodSandbox creates and starts a pod-level sandbox. Runtimes must ensure
// the sandbox is in the ready state on success.
func (f *RemoteRuntime) RunPodSandbox(ctx context.Context, req *kubeapi.RunPodSandboxRequest) (*kubeapi.RunPodSandboxResponse, error) {
sandboxID, err := f.RuntimeService.RunPodSandbox(req.Config)
sandboxID, err := f.RuntimeService.RunPodSandbox(req.Config, req.RuntimeHandler)
if err != nil {
return nil, err
}