Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
0410221c
Commit
0410221c
authored
Aug 16, 2017
by
Cao Shufeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
run hack/update-all.sh
parent
f4e8b8f1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
461 additions
and
4 deletions
+461
-4
BUILD
pkg/generated/openapi/BUILD
+1
-0
BUILD
staging/src/k8s.io/apiserver/pkg/apis/audit/BUILD
+2
-0
BUILD
staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/BUILD
+27
-0
BUILD
staging/src/k8s.io/apiserver/pkg/apis/audit/install/BUILD
+12
-0
BUILD
staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1/BUILD
+44
-0
zz_generated.conversion.go
...iserver/pkg/apis/audit/v1beta1/zz_generated.conversion.go
+0
-0
zz_generated.deepcopy.go
...apiserver/pkg/apis/audit/v1beta1/zz_generated.deepcopy.go
+336
-0
zz_generated.defaults.go
...apiserver/pkg/apis/audit/v1beta1/zz_generated.defaults.go
+32
-0
BUILD
staging/src/k8s.io/apiserver/pkg/audit/BUILD
+1
-0
BUILD
staging/src/k8s.io/apiserver/pkg/audit/policy/BUILD
+2
-0
BUILD
staging/src/k8s.io/apiserver/pkg/endpoints/filters/BUILD
+1
-1
BUILD
staging/src/k8s.io/apiserver/plugin/pkg/audit/log/BUILD
+1
-1
BUILD
staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/BUILD
+2
-2
No files found.
pkg/generated/openapi/BUILD
View file @
0410221c
...
...
@@ -51,6 +51,7 @@ openapi_library(
"k8s.io/apimachinery/pkg/util/intstr",
"k8s.io/apimachinery/pkg/version",
"k8s.io/apiserver/pkg/apis/audit/v1alpha1",
"k8s.io/apiserver/pkg/apis/audit/v1beta1",
"k8s.io/apiserver/pkg/apis/example/v1",
"k8s.io/client-go/pkg/version",
"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1",
...
...
staging/src/k8s.io/apiserver/pkg/apis/audit/BUILD
View file @
0410221c
...
...
@@ -34,8 +34,10 @@ filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer:all-srcs",
"//staging/src/k8s.io/apiserver/pkg/apis/audit/install:all-srcs",
"//staging/src/k8s.io/apiserver/pkg/apis/audit/v1alpha1:all-srcs",
"//staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1:all-srcs",
"//staging/src/k8s.io/apiserver/pkg/apis/audit/validation:all-srcs",
],
tags = ["automanaged"],
...
...
staging/src/k8s.io/apiserver/pkg/apis/audit/fuzzer/BUILD
0 → 100644
View file @
0410221c
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["fuzzer.go"],
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/google/gofuzz:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime/serializer:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
staging/src/k8s.io/apiserver/pkg/apis/audit/install/BUILD
View file @
0410221c
...
...
@@ -3,6 +3,7 @@ package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_library(
...
...
@@ -15,6 +16,7 @@ go_library(
"//vendor/k8s.io/apimachinery/pkg/util/sets:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1alpha1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1beta1:go_default_library",
],
)
...
...
@@ -30,3 +32,13 @@ filegroup(
srcs = [":package-srcs"],
tags = ["automanaged"],
)
go_test(
name = "go_default_test",
srcs = ["roundtrip_test.go"],
library = ":go_default_library",
deps = [
"//vendor/k8s.io/apimachinery/pkg/api/testing/roundtrip:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/fuzzer:go_default_library",
],
)
staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1/BUILD
0 → 100644
View file @
0410221c
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = [
"doc.go",
"register.go",
"types.go",
"zz_generated.conversion.go",
"zz_generated.deepcopy.go",
"zz_generated.defaults.go",
],
tags = ["automanaged"],
deps = [
"//vendor/k8s.io/api/authentication/v1:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/conversion:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)
staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1/zz_generated.conversion.go
0 → 100644
View file @
0410221c
This diff is collapsed.
Click to expand it.
staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1/zz_generated.deepcopy.go
0 → 100644
View file @
0410221c
// +build !ignore_autogenerated
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was autogenerated by deepcopy-gen. Do not edit it manually!
package
v1beta1
import
(
v1
"k8s.io/api/authentication/v1"
meta_v1
"k8s.io/apimachinery/pkg/apis/meta/v1"
conversion
"k8s.io/apimachinery/pkg/conversion"
runtime
"k8s.io/apimachinery/pkg/runtime"
reflect
"reflect"
)
func
init
()
{
SchemeBuilder
.
Register
(
RegisterDeepCopies
)
}
// RegisterDeepCopies adds deep-copy functions to the given scheme. Public
// to allow building arbitrary schemes.
//
// Deprecated: deepcopy registration will go away when static deepcopy is fully implemented.
func
RegisterDeepCopies
(
scheme
*
runtime
.
Scheme
)
error
{
return
scheme
.
AddGeneratedDeepCopyFuncs
(
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
Event
)
.
DeepCopyInto
(
out
.
(
*
Event
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
Event
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
EventList
)
.
DeepCopyInto
(
out
.
(
*
EventList
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
EventList
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
GroupResources
)
.
DeepCopyInto
(
out
.
(
*
GroupResources
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
GroupResources
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
ObjectReference
)
.
DeepCopyInto
(
out
.
(
*
ObjectReference
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
ObjectReference
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
Policy
)
.
DeepCopyInto
(
out
.
(
*
Policy
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
Policy
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
PolicyList
)
.
DeepCopyInto
(
out
.
(
*
PolicyList
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
PolicyList
{})},
conversion
.
GeneratedDeepCopyFunc
{
Fn
:
func
(
in
interface
{},
out
interface
{},
c
*
conversion
.
Cloner
)
error
{
in
.
(
*
PolicyRule
)
.
DeepCopyInto
(
out
.
(
*
PolicyRule
))
return
nil
},
InType
:
reflect
.
TypeOf
(
&
PolicyRule
{})},
)
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
Event
)
DeepCopyInto
(
out
*
Event
)
{
*
out
=
*
in
out
.
TypeMeta
=
in
.
TypeMeta
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
in
.
Timestamp
.
DeepCopyInto
(
&
out
.
Timestamp
)
in
.
User
.
DeepCopyInto
(
&
out
.
User
)
if
in
.
ImpersonatedUser
!=
nil
{
in
,
out
:=
&
in
.
ImpersonatedUser
,
&
out
.
ImpersonatedUser
if
*
in
==
nil
{
*
out
=
nil
}
else
{
*
out
=
new
(
v1
.
UserInfo
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
}
if
in
.
SourceIPs
!=
nil
{
in
,
out
:=
&
in
.
SourceIPs
,
&
out
.
SourceIPs
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
ObjectRef
!=
nil
{
in
,
out
:=
&
in
.
ObjectRef
,
&
out
.
ObjectRef
if
*
in
==
nil
{
*
out
=
nil
}
else
{
*
out
=
new
(
ObjectReference
)
**
out
=
**
in
}
}
if
in
.
ResponseStatus
!=
nil
{
in
,
out
:=
&
in
.
ResponseStatus
,
&
out
.
ResponseStatus
if
*
in
==
nil
{
*
out
=
nil
}
else
{
*
out
=
new
(
meta_v1
.
Status
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
}
if
in
.
RequestObject
!=
nil
{
in
,
out
:=
&
in
.
RequestObject
,
&
out
.
RequestObject
if
*
in
==
nil
{
*
out
=
nil
}
else
{
*
out
=
new
(
runtime
.
Unknown
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
}
if
in
.
ResponseObject
!=
nil
{
in
,
out
:=
&
in
.
ResponseObject
,
&
out
.
ResponseObject
if
*
in
==
nil
{
*
out
=
nil
}
else
{
*
out
=
new
(
runtime
.
Unknown
)
(
*
in
)
.
DeepCopyInto
(
*
out
)
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Event.
func
(
in
*
Event
)
DeepCopy
()
*
Event
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
Event
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func
(
in
*
Event
)
DeepCopyObject
()
runtime
.
Object
{
if
c
:=
in
.
DeepCopy
();
c
!=
nil
{
return
c
}
else
{
return
nil
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
EventList
)
DeepCopyInto
(
out
*
EventList
)
{
*
out
=
*
in
out
.
TypeMeta
=
in
.
TypeMeta
out
.
ListMeta
=
in
.
ListMeta
if
in
.
Items
!=
nil
{
in
,
out
:=
&
in
.
Items
,
&
out
.
Items
*
out
=
make
([]
Event
,
len
(
*
in
))
for
i
:=
range
*
in
{
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EventList.
func
(
in
*
EventList
)
DeepCopy
()
*
EventList
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
EventList
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func
(
in
*
EventList
)
DeepCopyObject
()
runtime
.
Object
{
if
c
:=
in
.
DeepCopy
();
c
!=
nil
{
return
c
}
else
{
return
nil
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
GroupResources
)
DeepCopyInto
(
out
*
GroupResources
)
{
*
out
=
*
in
if
in
.
Resources
!=
nil
{
in
,
out
:=
&
in
.
Resources
,
&
out
.
Resources
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupResources.
func
(
in
*
GroupResources
)
DeepCopy
()
*
GroupResources
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
GroupResources
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
ObjectReference
)
DeepCopyInto
(
out
*
ObjectReference
)
{
*
out
=
*
in
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ObjectReference.
func
(
in
*
ObjectReference
)
DeepCopy
()
*
ObjectReference
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
ObjectReference
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
Policy
)
DeepCopyInto
(
out
*
Policy
)
{
*
out
=
*
in
out
.
TypeMeta
=
in
.
TypeMeta
in
.
ObjectMeta
.
DeepCopyInto
(
&
out
.
ObjectMeta
)
if
in
.
Rules
!=
nil
{
in
,
out
:=
&
in
.
Rules
,
&
out
.
Rules
*
out
=
make
([]
PolicyRule
,
len
(
*
in
))
for
i
:=
range
*
in
{
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policy.
func
(
in
*
Policy
)
DeepCopy
()
*
Policy
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
Policy
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func
(
in
*
Policy
)
DeepCopyObject
()
runtime
.
Object
{
if
c
:=
in
.
DeepCopy
();
c
!=
nil
{
return
c
}
else
{
return
nil
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
PolicyList
)
DeepCopyInto
(
out
*
PolicyList
)
{
*
out
=
*
in
out
.
TypeMeta
=
in
.
TypeMeta
out
.
ListMeta
=
in
.
ListMeta
if
in
.
Items
!=
nil
{
in
,
out
:=
&
in
.
Items
,
&
out
.
Items
*
out
=
make
([]
Policy
,
len
(
*
in
))
for
i
:=
range
*
in
{
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyList.
func
(
in
*
PolicyList
)
DeepCopy
()
*
PolicyList
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
PolicyList
)
in
.
DeepCopyInto
(
out
)
return
out
}
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func
(
in
*
PolicyList
)
DeepCopyObject
()
runtime
.
Object
{
if
c
:=
in
.
DeepCopy
();
c
!=
nil
{
return
c
}
else
{
return
nil
}
}
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func
(
in
*
PolicyRule
)
DeepCopyInto
(
out
*
PolicyRule
)
{
*
out
=
*
in
if
in
.
Users
!=
nil
{
in
,
out
:=
&
in
.
Users
,
&
out
.
Users
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
UserGroups
!=
nil
{
in
,
out
:=
&
in
.
UserGroups
,
&
out
.
UserGroups
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
Verbs
!=
nil
{
in
,
out
:=
&
in
.
Verbs
,
&
out
.
Verbs
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
Resources
!=
nil
{
in
,
out
:=
&
in
.
Resources
,
&
out
.
Resources
*
out
=
make
([]
GroupResources
,
len
(
*
in
))
for
i
:=
range
*
in
{
(
*
in
)[
i
]
.
DeepCopyInto
(
&
(
*
out
)[
i
])
}
}
if
in
.
Namespaces
!=
nil
{
in
,
out
:=
&
in
.
Namespaces
,
&
out
.
Namespaces
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
if
in
.
NonResourceURLs
!=
nil
{
in
,
out
:=
&
in
.
NonResourceURLs
,
&
out
.
NonResourceURLs
*
out
=
make
([]
string
,
len
(
*
in
))
copy
(
*
out
,
*
in
)
}
return
}
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PolicyRule.
func
(
in
*
PolicyRule
)
DeepCopy
()
*
PolicyRule
{
if
in
==
nil
{
return
nil
}
out
:=
new
(
PolicyRule
)
in
.
DeepCopyInto
(
out
)
return
out
}
staging/src/k8s.io/apiserver/pkg/apis/audit/v1beta1/zz_generated.defaults.go
0 → 100644
View file @
0410221c
// +build !ignore_autogenerated
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was autogenerated by defaulter-gen. Do not edit it manually!
package
v1beta1
import
(
runtime
"k8s.io/apimachinery/pkg/runtime"
)
// RegisterDefaults adds defaulters functions to the given scheme.
// Public to allow building arbitrary schemes.
// All generated defaulters are covering - they call all nested defaulters.
func
RegisterDefaults
(
scheme
*
runtime
.
Scheme
)
error
{
return
nil
}
staging/src/k8s.io/apiserver/pkg/audit/BUILD
View file @
0410221c
...
...
@@ -30,6 +30,7 @@ go_library(
"//vendor/k8s.io/apimachinery/pkg/util/net:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1alpha1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1beta1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/authorization/authorizer:go_default_library",
],
)
...
...
staging/src/k8s.io/apiserver/pkg/audit/policy/BUILD
View file @
0410221c
...
...
@@ -20,6 +20,7 @@ go_test(
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/authentication/user:go_default_library",
"//vendor/k8s.io/apiserver/pkg/authorization/authorizer:go_default_library",
"//vendor/k8s.io/apiserver/plugin/pkg/audit/webhook:go_default_library",
],
)
...
...
@@ -34,6 +35,7 @@ go_library(
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1alpha1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1beta1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/validation:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/authorization/authorizer:go_default_library",
...
...
staging/src/k8s.io/apiserver/pkg/endpoints/filters/BUILD
View file @
0410221c
...
...
@@ -28,7 +28,7 @@ go_test(
"//vendor/k8s.io/apimachinery/pkg/util/sets:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
alph
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
bet
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit/policy:go_default_library",
"//vendor/k8s.io/apiserver/pkg/authentication/authenticator:go_default_library",
...
...
staging/src/k8s.io/apiserver/plugin/pkg/audit/log/BUILD
View file @
0410221c
...
...
@@ -11,7 +11,7 @@ go_library(
deps = [
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
alph
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
bet
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit:go_default_library",
],
)
...
...
staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/BUILD
View file @
0410221c
...
...
@@ -16,7 +16,7 @@ go_test(
"//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library",
"//vendor/k8s.io/apimachinery/pkg/runtime/serializer/json:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
alph
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
bet
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit:go_default_library",
"//vendor/k8s.io/client-go/tools/clientcmd/api/v1:go_default_library",
],
...
...
@@ -34,7 +34,7 @@ go_library(
"//vendor/k8s.io/apimachinery/pkg/util/runtime:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/install:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
alph
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/apis/audit/v1
bet
a1:go_default_library",
"//vendor/k8s.io/apiserver/pkg/audit:go_default_library",
"//vendor/k8s.io/apiserver/pkg/util/webhook:go_default_library",
],
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment