move no k8s.io/kubernetes dependencies round one

pull/6/head
deads2k 2017-01-04 10:38:42 -05:00
parent a672b501df
commit b813e98a26
12 changed files with 2 additions and 82 deletions

View File

@ -1,15 +0,0 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = ["interfaces.go"],
tags = ["automanaged"],
deps = ["//vendor:k8s.io/apiserver/pkg/authentication/user"],
)

View File

@ -1,15 +0,0 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = ["interfaces.go"],
tags = ["automanaged"],
deps = ["//vendor:k8s.io/apiserver/pkg/authentication/user"],
)

View File

@ -1,25 +0,0 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = [
"doc.go",
"healthz.go",
],
tags = ["automanaged"],
)
go_test(
name = "go_default_test",
srcs = ["healthz_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
)

View File

@ -1,25 +0,0 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
name = "go_default_library",
srcs = [
"doc.go",
"writer.go",
],
tags = ["automanaged"],
)
go_test(
name = "go_default_test",
srcs = ["writer_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
)

View File

@ -16,6 +16,6 @@ limitations under the License.
// Package healthz implements basic http server health checking.
// Usage:
// import "k8s.io/kubernetes/pkg/healthz"
// import "k8s.io/apiserver/pkg/healthz"
// healthz.DefaultHealthz()
package healthz // import "k8s.io/kubernetes/pkg/healthz"
package healthz // import "k8s.io/apiserver/pkg/healthz"