1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package(default_visibility = ["//visibility:public"])
- load(
- "@io_bazel_rules_go//go:def.bzl",
- "go_library",
- )
- go_library(
- name = "go_default_library",
- srcs = ["doc.go"],
- importpath = "k8s.io/kubernetes/pkg/registry",
- )
- filegroup(
- name = "package-srcs",
- srcs = glob(["**"]),
- tags = ["automanaged"],
- visibility = ["//visibility:private"],
- )
- filegroup(
- name = "all-srcs",
- srcs = [
- ":package-srcs",
- "//pkg/registry/admissionregistration/mutatingwebhookconfiguration:all-srcs",
- "//pkg/registry/admissionregistration/rest:all-srcs",
- "//pkg/registry/admissionregistration/validatingwebhookconfiguration:all-srcs",
- "//pkg/registry/apps/controllerrevision:all-srcs",
- "//pkg/registry/apps/daemonset:all-srcs",
- "//pkg/registry/apps/deployment:all-srcs",
- "//pkg/registry/apps/replicaset:all-srcs",
- "//pkg/registry/apps/rest:all-srcs",
- "//pkg/registry/apps/statefulset:all-srcs",
- "//pkg/registry/auditregistration/auditsink:all-srcs",
- "//pkg/registry/auditregistration/rest:all-srcs",
- "//pkg/registry/authentication/rest:all-srcs",
- "//pkg/registry/authentication/tokenreview:all-srcs",
- "//pkg/registry/authorization/localsubjectaccessreview:all-srcs",
- "//pkg/registry/authorization/rest:all-srcs",
- "//pkg/registry/authorization/selfsubjectaccessreview:all-srcs",
- "//pkg/registry/authorization/selfsubjectrulesreview:all-srcs",
- "//pkg/registry/authorization/subjectaccessreview:all-srcs",
- "//pkg/registry/authorization/util:all-srcs",
- "//pkg/registry/autoscaling/horizontalpodautoscaler:all-srcs",
- "//pkg/registry/autoscaling/rest:all-srcs",
- "//pkg/registry/batch/cronjob:all-srcs",
- "//pkg/registry/batch/job:all-srcs",
- "//pkg/registry/batch/rest:all-srcs",
- "//pkg/registry/cachesize:all-srcs",
- "//pkg/registry/certificates/certificates:all-srcs",
- "//pkg/registry/certificates/rest:all-srcs",
- "//pkg/registry/coordination/lease:all-srcs",
- "//pkg/registry/coordination/rest:all-srcs",
- "//pkg/registry/core/componentstatus:all-srcs",
- "//pkg/registry/core/configmap:all-srcs",
- "//pkg/registry/core/endpoint:all-srcs",
- "//pkg/registry/core/event:all-srcs",
- "//pkg/registry/core/limitrange:all-srcs",
- "//pkg/registry/core/namespace:all-srcs",
- "//pkg/registry/core/node:all-srcs",
- "//pkg/registry/core/persistentvolume:all-srcs",
- "//pkg/registry/core/persistentvolumeclaim:all-srcs",
- "//pkg/registry/core/pod:all-srcs",
- "//pkg/registry/core/podtemplate:all-srcs",
- "//pkg/registry/core/rangeallocation:all-srcs",
- "//pkg/registry/core/replicationcontroller:all-srcs",
- "//pkg/registry/core/resourcequota:all-srcs",
- "//pkg/registry/core/rest:all-srcs",
- "//pkg/registry/core/secret:all-srcs",
- "//pkg/registry/core/service:all-srcs",
- "//pkg/registry/core/serviceaccount:all-srcs",
- "//pkg/registry/events/event:all-srcs",
- "//pkg/registry/events/rest:all-srcs",
- "//pkg/registry/extensions/controller/storage:all-srcs",
- "//pkg/registry/extensions/rest:all-srcs",
- "//pkg/registry/networking/ingress:all-srcs",
- "//pkg/registry/networking/networkpolicy:all-srcs",
- "//pkg/registry/networking/rest:all-srcs",
- "//pkg/registry/node/rest:all-srcs",
- "//pkg/registry/node/runtimeclass:all-srcs",
- "//pkg/registry/policy/poddisruptionbudget:all-srcs",
- "//pkg/registry/policy/podsecuritypolicy:all-srcs",
- "//pkg/registry/policy/rest:all-srcs",
- "//pkg/registry/rbac:all-srcs",
- "//pkg/registry/registrytest:all-srcs",
- "//pkg/registry/scheduling/priorityclass:all-srcs",
- "//pkg/registry/scheduling/rest:all-srcs",
- "//pkg/registry/settings/podpreset:all-srcs",
- "//pkg/registry/settings/rest:all-srcs",
- "//pkg/registry/storage/csidriver:all-srcs",
- "//pkg/registry/storage/csinode:all-srcs",
- "//pkg/registry/storage/rest:all-srcs",
- "//pkg/registry/storage/storageclass:all-srcs",
- "//pkg/registry/storage/volumeattachment:all-srcs",
- ],
- tags = ["automanaged"],
- )
|