mirror of https://github.com/k3s-io/k3s
kazel: skip third_party/etcd.*
parent
c8cded58d7
commit
f9c1355b47
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"GoPrefix": "k8s.io/kubernetes",
|
||||
"SkippedPaths": [
|
||||
"^_.*"
|
||||
"^_.*",
|
||||
"^third_party/etcd.*"
|
||||
],
|
||||
"AddSourcesRules": true,
|
||||
"K8sOpenAPIGen": true
|
||||
|
|
|
@ -4,8 +4,13 @@ licenses(["notice"])
|
|||
|
||||
filegroup(
|
||||
name = "package-srcs",
|
||||
srcs = glob(["**"]),
|
||||
tags = ["automanaged"],
|
||||
srcs = glob(
|
||||
["**"],
|
||||
exclude = [
|
||||
"etcd*/**",
|
||||
"etcd*.tar.gz",
|
||||
],
|
||||
),
|
||||
visibility = ["//visibility:private"],
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue