k3s/pkg/kubeapiserver/authenticator/BUILD

51 lines
1.9 KiB
Python
Raw Normal View History

2016-10-19 21:42:06 +00:00
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = ["config.go"],
2016-10-19 21:42:06 +00:00
tags = ["automanaged"],
deps = [
"//pkg/genericapiserver/authenticator:go_default_library",
2016-10-19 21:42:06 +00:00
"//pkg/serviceaccount:go_default_library",
"//pkg/util/cert:go_default_library",
"//plugin/pkg/auth/authenticator/password/keystone:go_default_library",
"//plugin/pkg/auth/authenticator/password/passwordfile:go_default_library",
"//plugin/pkg/auth/authenticator/request/basicauth:go_default_library",
2016-10-24 16:49:44 +00:00
"//plugin/pkg/auth/authenticator/request/headerrequest:go_default_library",
2016-10-19 21:42:06 +00:00
"//plugin/pkg/auth/authenticator/token/anytoken:go_default_library",
"//plugin/pkg/auth/authenticator/token/oidc:go_default_library",
"//plugin/pkg/auth/authenticator/token/webhook:go_default_library",
2016-10-22 09:50:33 +00:00
"//vendor:github.com/go-openapi/spec",
2017-01-04 15:39:05 +00:00
"//vendor:k8s.io/apiserver/pkg/authentication/authenticator",
2017-01-05 19:47:14 +00:00
"//vendor:k8s.io/apiserver/pkg/authentication/group",
"//vendor:k8s.io/apiserver/pkg/authentication/request/anonymous",
"//vendor:k8s.io/apiserver/pkg/authentication/request/bearertoken",
"//vendor:k8s.io/apiserver/pkg/authentication/request/union",
"//vendor:k8s.io/apiserver/pkg/authentication/request/x509",
"//vendor:k8s.io/apiserver/pkg/authentication/token/tokenfile",
2017-01-04 14:31:53 +00:00
"//vendor:k8s.io/apiserver/pkg/authentication/user",
2017-01-04 20:13:06 +00:00
"//vendor:k8s.io/client-go/plugin/pkg/client/auth/gcp",
"//vendor:k8s.io/client-go/plugin/pkg/client/auth/oidc",
2016-10-19 21:42:06 +00:00
],
)
2017-01-03 22:40:41 +00:00
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)