autogenerated

This commit is contained in:
Mike Danese
2016-12-29 13:02:00 -08:00
parent 087016dd1c
commit 161c391f44
512 changed files with 1081 additions and 614 deletions

View File

@@ -5,10 +5,29 @@ licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_binary",
"go_library",
"go_test",
)
go_binary(
name = "hyperkube",
library = ":go_default_library",
tags = ["automanaged"],
)
go_test(
name = "go_default_test",
srcs = ["hyperkube_test.go"],
library = ":go_default_library",
tags = ["automanaged"],
deps = [
"//vendor:github.com/spf13/cobra",
"//vendor:github.com/stretchr/testify/assert",
],
)
go_library(
name = "go_default_library",
srcs = [
"federation-apiserver.go",
"federation-controller-manager.go",