123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package(default_visibility = ["//visibility:public"])
- load(
- "@io_bazel_rules_go//go:def.bzl",
- "go_library",
- )
- go_library(
- name = "go_default_library",
- srcs = [
- "doc.go",
- "utils.go",
- ],
- importpath = "k8s.io/kubernetes/test/integration",
- deps = [
- "//staging/src/k8s.io/apimachinery/pkg/api/errors:go_default_library",
- "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
- "//staging/src/k8s.io/apimachinery/pkg/util/wait:go_default_library",
- "//staging/src/k8s.io/apiserver/pkg/storage/storagebackend:go_default_library",
- "//staging/src/k8s.io/client-go/kubernetes:go_default_library",
- "//staging/src/k8s.io/client-go/kubernetes/typed/core/v1:go_default_library",
- "//vendor/github.com/coreos/etcd/clientv3:go_default_library",
- "//vendor/github.com/coreos/etcd/pkg/transport:go_default_library",
- ],
- )
- filegroup(
- name = "package-srcs",
- srcs = glob(["**"]),
- tags = ["automanaged"],
- visibility = ["//visibility:private"],
- )
- filegroup(
- name = "all-srcs",
- srcs = [
- ":package-srcs",
- "//test/integration/apimachinery:all-srcs",
- "//test/integration/apiserver:all-srcs",
- "//test/integration/auth:all-srcs",
- "//test/integration/benchmark/jsonify:all-srcs",
- "//test/integration/client:all-srcs",
- "//test/integration/configmap:all-srcs",
- "//test/integration/cronjob:all-srcs",
- "//test/integration/daemonset:all-srcs",
- "//test/integration/defaulttolerationseconds:all-srcs",
- "//test/integration/deployment:all-srcs",
- "//test/integration/disruption:all-srcs",
- "//test/integration/dryrun:all-srcs",
- "//test/integration/etcd:all-srcs",
- "//test/integration/events:all-srcs",
- "//test/integration/evictions:all-srcs",
- "//test/integration/examples:all-srcs",
- "//test/integration/framework:all-srcs",
- "//test/integration/garbagecollector:all-srcs",
- "//test/integration/ipamperf:all-srcs",
- "//test/integration/kubelet:all-srcs",
- "//test/integration/master:all-srcs",
- "//test/integration/metrics:all-srcs",
- "//test/integration/objectmeta:all-srcs",
- "//test/integration/openshift:all-srcs",
- "//test/integration/pods:all-srcs",
- "//test/integration/quota:all-srcs",
- "//test/integration/replicaset:all-srcs",
- "//test/integration/replicationcontroller:all-srcs",
- "//test/integration/scale:all-srcs",
- "//test/integration/scheduler:all-srcs",
- "//test/integration/scheduler_perf:all-srcs",
- "//test/integration/secrets:all-srcs",
- "//test/integration/serviceaccount:all-srcs",
- "//test/integration/serving:all-srcs",
- "//test/integration/statefulset:all-srcs",
- "//test/integration/storageclasses:all-srcs",
- "//test/integration/tls:all-srcs",
- "//test/integration/ttlcontroller:all-srcs",
- "//test/integration/util:all-srcs",
- "//test/integration/volume:all-srcs",
- ],
- tags = ["automanaged"],
- )
|