vendor updates

This commit is contained in:
Serguei Bezverkhi
2018-03-06 17:33:18 -05:00
parent 4b3ebc171b
commit e9033989a0
5854 changed files with 248382 additions and 119809 deletions

View File

@ -8,7 +8,12 @@ load(
go_library(
name = "go_default_library",
srcs = ["mt.go"],
srcs = select({
"@io_bazel_rules_go//go/platform:linux": [
"mt.go",
],
"//conditions:default": [],
}),
importpath = "k8s.io/kubernetes/test/images/mounttest",
)
@ -27,6 +32,5 @@ filegroup(
go_binary(
name = "mounttest",
importpath = "k8s.io/kubernetes/test/images/mounttest",
library = ":go_default_library",
embed = [":go_default_library"],
)

View File

@ -1,3 +1,5 @@
// +build linux
/*
Copyright 2015 The Kubernetes Authors.