BUILD 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 = ["doc.go"],
  9. importpath = "k8s.io/kubernetes/pkg/registry",
  10. )
  11. filegroup(
  12. name = "package-srcs",
  13. srcs = glob(["**"]),
  14. tags = ["automanaged"],
  15. visibility = ["//visibility:private"],
  16. )
  17. filegroup(
  18. name = "all-srcs",
  19. srcs = [
  20. ":package-srcs",
  21. "//pkg/registry/admissionregistration/mutatingwebhookconfiguration:all-srcs",
  22. "//pkg/registry/admissionregistration/rest:all-srcs",
  23. "//pkg/registry/admissionregistration/validatingwebhookconfiguration:all-srcs",
  24. "//pkg/registry/apps/controllerrevision:all-srcs",
  25. "//pkg/registry/apps/daemonset:all-srcs",
  26. "//pkg/registry/apps/deployment:all-srcs",
  27. "//pkg/registry/apps/replicaset:all-srcs",
  28. "//pkg/registry/apps/rest:all-srcs",
  29. "//pkg/registry/apps/statefulset:all-srcs",
  30. "//pkg/registry/auditregistration/auditsink:all-srcs",
  31. "//pkg/registry/auditregistration/rest:all-srcs",
  32. "//pkg/registry/authentication/rest:all-srcs",
  33. "//pkg/registry/authentication/tokenreview:all-srcs",
  34. "//pkg/registry/authorization/localsubjectaccessreview:all-srcs",
  35. "//pkg/registry/authorization/rest:all-srcs",
  36. "//pkg/registry/authorization/selfsubjectaccessreview:all-srcs",
  37. "//pkg/registry/authorization/selfsubjectrulesreview:all-srcs",
  38. "//pkg/registry/authorization/subjectaccessreview:all-srcs",
  39. "//pkg/registry/authorization/util:all-srcs",
  40. "//pkg/registry/autoscaling/horizontalpodautoscaler:all-srcs",
  41. "//pkg/registry/autoscaling/rest:all-srcs",
  42. "//pkg/registry/batch/cronjob:all-srcs",
  43. "//pkg/registry/batch/job:all-srcs",
  44. "//pkg/registry/batch/rest:all-srcs",
  45. "//pkg/registry/cachesize:all-srcs",
  46. "//pkg/registry/certificates/certificates:all-srcs",
  47. "//pkg/registry/certificates/rest:all-srcs",
  48. "//pkg/registry/coordination/lease:all-srcs",
  49. "//pkg/registry/coordination/rest:all-srcs",
  50. "//pkg/registry/core/componentstatus:all-srcs",
  51. "//pkg/registry/core/configmap:all-srcs",
  52. "//pkg/registry/core/endpoint:all-srcs",
  53. "//pkg/registry/core/event:all-srcs",
  54. "//pkg/registry/core/limitrange:all-srcs",
  55. "//pkg/registry/core/namespace:all-srcs",
  56. "//pkg/registry/core/node:all-srcs",
  57. "//pkg/registry/core/persistentvolume:all-srcs",
  58. "//pkg/registry/core/persistentvolumeclaim:all-srcs",
  59. "//pkg/registry/core/pod:all-srcs",
  60. "//pkg/registry/core/podtemplate:all-srcs",
  61. "//pkg/registry/core/rangeallocation:all-srcs",
  62. "//pkg/registry/core/replicationcontroller:all-srcs",
  63. "//pkg/registry/core/resourcequota:all-srcs",
  64. "//pkg/registry/core/rest:all-srcs",
  65. "//pkg/registry/core/secret:all-srcs",
  66. "//pkg/registry/core/service:all-srcs",
  67. "//pkg/registry/core/serviceaccount:all-srcs",
  68. "//pkg/registry/events/event:all-srcs",
  69. "//pkg/registry/events/rest:all-srcs",
  70. "//pkg/registry/extensions/controller/storage:all-srcs",
  71. "//pkg/registry/extensions/rest:all-srcs",
  72. "//pkg/registry/networking/ingress:all-srcs",
  73. "//pkg/registry/networking/networkpolicy:all-srcs",
  74. "//pkg/registry/networking/rest:all-srcs",
  75. "//pkg/registry/node/rest:all-srcs",
  76. "//pkg/registry/node/runtimeclass:all-srcs",
  77. "//pkg/registry/policy/poddisruptionbudget:all-srcs",
  78. "//pkg/registry/policy/podsecuritypolicy:all-srcs",
  79. "//pkg/registry/policy/rest:all-srcs",
  80. "//pkg/registry/rbac:all-srcs",
  81. "//pkg/registry/registrytest:all-srcs",
  82. "//pkg/registry/scheduling/priorityclass:all-srcs",
  83. "//pkg/registry/scheduling/rest:all-srcs",
  84. "//pkg/registry/settings/podpreset:all-srcs",
  85. "//pkg/registry/settings/rest:all-srcs",
  86. "//pkg/registry/storage/csidriver:all-srcs",
  87. "//pkg/registry/storage/csinode:all-srcs",
  88. "//pkg/registry/storage/rest:all-srcs",
  89. "//pkg/registry/storage/storageclass:all-srcs",
  90. "//pkg/registry/storage/volumeattachment:all-srcs",
  91. ],
  92. tags = ["automanaged"],
  93. )