
**What this PR does / why we need it**: Makes functions in validation/schema.go private to kubectl, further isolating kubectl. **Which issue this PR fixes** Part of a series of PRs to address kubernetes/community#598 **Release note**: ```release-note NONE ```
26 lines
436 B
Python
26 lines
436 B
Python
sh_library(
|
|
name = "lib",
|
|
srcs = [
|
|
"logging.sh",
|
|
],
|
|
visibility = [
|
|
"//build/visible_to:COMMON_testing",
|
|
"//build/visible_to:cluster",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
visibility = [
|
|
"//build/visible_to:cluster",
|
|
],
|
|
)
|