mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 07:27:21 +00:00
mechanical repercussions
This commit is contained in:
@@ -25,14 +25,10 @@ filegroup(
|
||||
srcs = [
|
||||
":package-srcs",
|
||||
"//plugin/pkg/auth/authenticator/password:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/request/anonymous:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/request/basicauth:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/request/headerrequest:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/request/union:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/request/x509:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/token/anytoken:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/token/oidc:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/token/tokenfile:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/token/tokentest:all-srcs",
|
||||
"//plugin/pkg/auth/authenticator/token/webhook:all-srcs",
|
||||
],
|
||||
|
||||
@@ -21,8 +21,8 @@ go_library(
|
||||
srcs = ["requestheader.go"],
|
||||
tags = ["automanaged"],
|
||||
deps = [
|
||||
"//plugin/pkg/auth/authenticator/request/x509:go_default_library",
|
||||
"//vendor:k8s.io/apiserver/pkg/authentication/authenticator",
|
||||
"//vendor:k8s.io/apiserver/pkg/authentication/request/x509",
|
||||
"//vendor:k8s.io/apiserver/pkg/authentication/user",
|
||||
"//vendor:k8s.io/client-go/pkg/util/cert",
|
||||
"//vendor:k8s.io/client-go/pkg/util/sets",
|
||||
|
||||
@@ -24,10 +24,10 @@ import (
|
||||
"strings"
|
||||
|
||||
"k8s.io/apiserver/pkg/authentication/authenticator"
|
||||
x509request "k8s.io/apiserver/pkg/authentication/request/x509"
|
||||
"k8s.io/apiserver/pkg/authentication/user"
|
||||
utilcert "k8s.io/client-go/pkg/util/cert"
|
||||
"k8s.io/client-go/pkg/util/sets"
|
||||
x509request "k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509"
|
||||
)
|
||||
|
||||
type requestHeaderAuthRequestHandler struct {
|
||||
|
||||
@@ -13,10 +13,10 @@ go_library(
|
||||
srcs = ["webhook.go"],
|
||||
tags = ["automanaged"],
|
||||
deps = [
|
||||
"//pkg/util/cache:go_default_library",
|
||||
"//plugin/pkg/webhook:go_default_library",
|
||||
"//vendor:k8s.io/apiserver/pkg/authentication/authenticator",
|
||||
"//vendor:k8s.io/apiserver/pkg/authentication/user",
|
||||
"//vendor:k8s.io/apiserver/pkg/util/cache",
|
||||
"//vendor:k8s.io/client-go/kubernetes/typed/authentication/v1beta1",
|
||||
"//vendor:k8s.io/client-go/pkg/apis/authentication/install",
|
||||
"//vendor:k8s.io/client-go/pkg/apis/authentication/v1beta1",
|
||||
|
||||
@@ -22,11 +22,11 @@ import (
|
||||
|
||||
"k8s.io/apiserver/pkg/authentication/authenticator"
|
||||
"k8s.io/apiserver/pkg/authentication/user"
|
||||
"k8s.io/apiserver/pkg/util/cache"
|
||||
authenticationclient "k8s.io/client-go/kubernetes/typed/authentication/v1beta1"
|
||||
authentication "k8s.io/client-go/pkg/apis/authentication/v1beta1"
|
||||
"k8s.io/client-go/pkg/runtime/schema"
|
||||
|
||||
"k8s.io/kubernetes/pkg/util/cache"
|
||||
"k8s.io/kubernetes/plugin/pkg/webhook"
|
||||
|
||||
_ "k8s.io/client-go/pkg/apis/authentication/install"
|
||||
|
||||
Reference in New Issue
Block a user