BUILD 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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/github.com/coreos/etcd/clientv3:go_default_library",
  21. "//vendor/github.com/coreos/etcd/pkg/transport:go_default_library",
  22. ],
  23. )
  24. filegroup(
  25. name = "package-srcs",
  26. srcs = glob(["**"]),
  27. tags = ["automanaged"],
  28. visibility = ["//visibility:private"],
  29. )
  30. filegroup(
  31. name = "all-srcs",
  32. srcs = [
  33. ":package-srcs",
  34. "//test/integration/apimachinery:all-srcs",
  35. "//test/integration/apiserver:all-srcs",
  36. "//test/integration/auth:all-srcs",
  37. "//test/integration/benchmark/jsonify:all-srcs",
  38. "//test/integration/client:all-srcs",
  39. "//test/integration/configmap:all-srcs",
  40. "//test/integration/cronjob:all-srcs",
  41. "//test/integration/daemonset:all-srcs",
  42. "//test/integration/defaulttolerationseconds:all-srcs",
  43. "//test/integration/deployment:all-srcs",
  44. "//test/integration/disruption:all-srcs",
  45. "//test/integration/dryrun:all-srcs",
  46. "//test/integration/etcd:all-srcs",
  47. "//test/integration/events:all-srcs",
  48. "//test/integration/evictions:all-srcs",
  49. "//test/integration/examples:all-srcs",
  50. "//test/integration/framework:all-srcs",
  51. "//test/integration/garbagecollector:all-srcs",
  52. "//test/integration/ipamperf:all-srcs",
  53. "//test/integration/kubelet:all-srcs",
  54. "//test/integration/master:all-srcs",
  55. "//test/integration/metrics:all-srcs",
  56. "//test/integration/objectmeta:all-srcs",
  57. "//test/integration/openshift:all-srcs",
  58. "//test/integration/pods:all-srcs",
  59. "//test/integration/quota:all-srcs",
  60. "//test/integration/replicaset:all-srcs",
  61. "//test/integration/replicationcontroller:all-srcs",
  62. "//test/integration/scale:all-srcs",
  63. "//test/integration/scheduler:all-srcs",
  64. "//test/integration/scheduler_perf:all-srcs",
  65. "//test/integration/secrets:all-srcs",
  66. "//test/integration/serviceaccount:all-srcs",
  67. "//test/integration/serving:all-srcs",
  68. "//test/integration/statefulset:all-srcs",
  69. "//test/integration/storageclasses:all-srcs",
  70. "//test/integration/tls:all-srcs",
  71. "//test/integration/ttlcontroller:all-srcs",
  72. "//test/integration/util:all-srcs",
  73. "//test/integration/volume:all-srcs",
  74. ],
  75. tags = ["automanaged"],
  76. )