123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package(default_visibility = ["//visibility:public"])
- load(
- "@io_bazel_rules_go//go:def.bzl",
- "go_binary",
- "go_library",
- )
- go_binary(
- name = "agnhost",
- embed = [":go_default_library"],
- )
- go_library(
- name = "go_default_library",
- srcs = ["agnhost.go"],
- importpath = "k8s.io/kubernetes/test/images/agnhost",
- deps = [
- "//test/images/agnhost/audit-proxy:go_default_library",
- "//test/images/agnhost/connect:go_default_library",
- "//test/images/agnhost/crd-conversion-webhook:go_default_library",
- "//test/images/agnhost/dns:go_default_library",
- "//test/images/agnhost/entrypoint-tester:go_default_library",
- "//test/images/agnhost/fakegitserver:go_default_library",
- "//test/images/agnhost/guestbook:go_default_library",
- "//test/images/agnhost/inclusterclient:go_default_library",
- "//test/images/agnhost/liveness:go_default_library",
- "//test/images/agnhost/logs-generator:go_default_library",
- "//test/images/agnhost/mounttest:go_default_library",
- "//test/images/agnhost/net:go_default_library",
- "//test/images/agnhost/netexec:go_default_library",
- "//test/images/agnhost/nettest:go_default_library",
- "//test/images/agnhost/no-snat-test:go_default_library",
- "//test/images/agnhost/no-snat-test-proxy:go_default_library",
- "//test/images/agnhost/pause:go_default_library",
- "//test/images/agnhost/port-forward-tester:go_default_library",
- "//test/images/agnhost/porter:go_default_library",
- "//test/images/agnhost/resource-consumer-controller:go_default_library",
- "//test/images/agnhost/serve-hostname:go_default_library",
- "//test/images/agnhost/test-webserver:go_default_library",
- "//test/images/agnhost/webhook:go_default_library",
- "//vendor/github.com/spf13/cobra:go_default_library",
- "//vendor/k8s.io/klog:go_default_library",
- ],
- )
- filegroup(
- name = "package-srcs",
- srcs = glob(["**"]),
- tags = ["automanaged"],
- visibility = ["//visibility:private"],
- )
- filegroup(
- name = "all-srcs",
- srcs = [
- ":package-srcs",
- "//test/images/agnhost/audit-proxy:all-srcs",
- "//test/images/agnhost/connect:all-srcs",
- "//test/images/agnhost/crd-conversion-webhook:all-srcs",
- "//test/images/agnhost/dns:all-srcs",
- "//test/images/agnhost/entrypoint-tester:all-srcs",
- "//test/images/agnhost/fakegitserver:all-srcs",
- "//test/images/agnhost/guestbook:all-srcs",
- "//test/images/agnhost/inclusterclient:all-srcs",
- "//test/images/agnhost/liveness:all-srcs",
- "//test/images/agnhost/logs-generator:all-srcs",
- "//test/images/agnhost/mounttest:all-srcs",
- "//test/images/agnhost/net:all-srcs",
- "//test/images/agnhost/netexec:all-srcs",
- "//test/images/agnhost/nettest:all-srcs",
- "//test/images/agnhost/no-snat-test:all-srcs",
- "//test/images/agnhost/no-snat-test-proxy:all-srcs",
- "//test/images/agnhost/pause:all-srcs",
- "//test/images/agnhost/port-forward-tester:all-srcs",
- "//test/images/agnhost/porter:all-srcs",
- "//test/images/agnhost/resource-consumer-controller:all-srcs",
- "//test/images/agnhost/serve-hostname:all-srcs",
- "//test/images/agnhost/test-webserver:all-srcs",
- "//test/images/agnhost/webhook:all-srcs",
- ],
- tags = ["automanaged"],
- )
|