BUILD 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. package(default_visibility = ["//visibility:public"])
  2. load(
  3. "@io_bazel_rules_go//go:def.bzl",
  4. "go_library",
  5. )
  6. go_library(
  7. name = "go_default_library",
  8. srcs = [
  9. "doc.go",
  10. "utils.go",
  11. ],
  12. importpath = "k8s.io/kubernetes/test/integration",
  13. deps = [
  14. "//staging/src/k8s.io/apimachinery/pkg/api/errors:go_default_library",
  15. "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
  16. "//staging/src/k8s.io/apimachinery/pkg/util/wait:go_default_library",
  17. "//staging/src/k8s.io/apiserver/pkg/storage/storagebackend:go_default_library",
  18. "//staging/src/k8s.io/client-go/kubernetes:go_default_library",
  19. "//staging/src/k8s.io/client-go/kubernetes/typed/core/v1:go_default_library",
  20. "//vendor/go.etcd.io/etcd/clientv3:go_default_library",
  21. "//vendor/go.etcd.io/etcd/pkg/transport:go_default_library",
  22. "//vendor/google.golang.org/grpc:go_default_library",
  23. ],
  24. )
  25. filegroup(
  26. name = "package-srcs",
  27. srcs = glob(["**"]),
  28. tags = ["automanaged"],
  29. visibility = ["//visibility:private"],
  30. )
  31. filegroup(
  32. name = "all-srcs",
  33. srcs = [
  34. ":package-srcs",
  35. "//test/integration/apimachinery:all-srcs",
  36. "//test/integration/apiserver:all-srcs",
  37. "//test/integration/auth:all-srcs",
  38. "//test/integration/benchmark/extractlog:all-srcs",
  39. "//test/integration/benchmark/jsonify:all-srcs",
  40. "//test/integration/client:all-srcs",
  41. "//test/integration/configmap:all-srcs",
  42. "//test/integration/cronjob:all-srcs",
  43. "//test/integration/daemonset:all-srcs",
  44. "//test/integration/defaulttolerationseconds:all-srcs",
  45. "//test/integration/deployment:all-srcs",
  46. "//test/integration/disruption:all-srcs",
  47. "//test/integration/dryrun:all-srcs",
  48. "//test/integration/etcd:all-srcs",
  49. "//test/integration/events:all-srcs",
  50. "//test/integration/evictions:all-srcs",
  51. "//test/integration/examples:all-srcs",
  52. "//test/integration/framework:all-srcs",
  53. "//test/integration/garbagecollector:all-srcs",
  54. "//test/integration/ipamperf:all-srcs",
  55. "//test/integration/kubelet:all-srcs",
  56. "//test/integration/master:all-srcs",
  57. "//test/integration/metrics:all-srcs",
  58. "//test/integration/namespace:all-srcs",
  59. "//test/integration/objectmeta:all-srcs",
  60. "//test/integration/openshift:all-srcs",
  61. "//test/integration/pods:all-srcs",
  62. "//test/integration/quota:all-srcs",
  63. "//test/integration/replicaset:all-srcs",
  64. "//test/integration/replicationcontroller:all-srcs",
  65. "//test/integration/scale:all-srcs",
  66. "//test/integration/scheduler:all-srcs",
  67. "//test/integration/scheduler_perf:all-srcs",
  68. "//test/integration/secrets:all-srcs",
  69. "//test/integration/serviceaccount:all-srcs",
  70. "//test/integration/serving:all-srcs",
  71. "//test/integration/statefulset:all-srcs",
  72. "//test/integration/storageclasses:all-srcs",
  73. "//test/integration/tls:all-srcs",
  74. "//test/integration/ttlcontroller:all-srcs",
  75. "//test/integration/util:all-srcs",
  76. "//test/integration/volume:all-srcs",
  77. "//test/integration/volumescheduling:all-srcs",
  78. ],
  79. tags = ["automanaged"],
  80. )