2016-10-19 21:42:06 +00:00
|
|
|
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",
|
|
|
|
],
|
2017-10-12 20:52:10 +00:00
|
|
|
importpath = "k8s.io/kubernetes/test/integration",
|
2016-10-19 21:42:06 +00:00
|
|
|
deps = [
|
2018-06-21 21:51:55 +00:00
|
|
|
"//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",
|
2018-01-25 17:34:05 +00:00
|
|
|
"//vendor/github.com/coreos/etcd/clientv3:go_default_library",
|
|
|
|
"//vendor/github.com/coreos/etcd/pkg/transport:go_default_library",
|
2016-10-19 21:42:06 +00:00
|
|
|
],
|
|
|
|
)
|
2017-01-03 22:40:41 +00:00
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "package-srcs",
|
|
|
|
srcs = glob(["**"]),
|
|
|
|
tags = ["automanaged"],
|
|
|
|
visibility = ["//visibility:private"],
|
|
|
|
)
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
name = "all-srcs",
|
|
|
|
srcs = [
|
|
|
|
":package-srcs",
|
2018-08-03 14:46:26 +00:00
|
|
|
"//test/integration/apimachinery:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/apiserver:all-srcs",
|
|
|
|
"//test/integration/auth:all-srcs",
|
2018-02-14 11:49:40 +00:00
|
|
|
"//test/integration/benchmark/jsonify:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/client:all-srcs",
|
|
|
|
"//test/integration/configmap:all-srcs",
|
2018-08-02 03:38:31 +00:00
|
|
|
"//test/integration/cronjob:all-srcs",
|
2017-09-08 18:44:45 +00:00
|
|
|
"//test/integration/daemonset:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/defaulttolerationseconds:all-srcs",
|
2017-05-12 19:44:31 +00:00
|
|
|
"//test/integration/deployment:all-srcs",
|
2018-08-10 09:04:05 +00:00
|
|
|
"//test/integration/dryrun:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/etcd:all-srcs",
|
|
|
|
"//test/integration/evictions:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/integration/examples:all-srcs",
|
|
|
|
"//test/integration/framework:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/garbagecollector:all-srcs",
|
2018-03-01 00:25:42 +00:00
|
|
|
"//test/integration/ipamperf:all-srcs",
|
2019-03-01 03:10:33 +00:00
|
|
|
"//test/integration/kubelet:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/master:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/integration/metrics:all-srcs",
|
|
|
|
"//test/integration/objectmeta:all-srcs",
|
|
|
|
"//test/integration/openshift:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/pods:all-srcs",
|
|
|
|
"//test/integration/quota:all-srcs",
|
|
|
|
"//test/integration/replicaset:all-srcs",
|
|
|
|
"//test/integration/replicationcontroller:all-srcs",
|
2017-10-28 02:01:32 +00:00
|
|
|
"//test/integration/scale:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/scheduler:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
"//test/integration/scheduler_perf:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/secrets:all-srcs",
|
|
|
|
"//test/integration/serviceaccount:all-srcs",
|
2018-11-08 10:43:56 +00:00
|
|
|
"//test/integration/serving:all-srcs",
|
2018-02-10 10:18:19 +00:00
|
|
|
"//test/integration/statefulset:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/storageclasses:all-srcs",
|
2017-07-13 06:49:41 +00:00
|
|
|
"//test/integration/tls:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/ttlcontroller:all-srcs",
|
2018-02-27 19:49:58 +00:00
|
|
|
"//test/integration/util:all-srcs",
|
2017-01-31 23:55:39 +00:00
|
|
|
"//test/integration/volume:all-srcs",
|
2017-01-03 22:40:41 +00:00
|
|
|
],
|
|
|
|
tags = ["automanaged"],
|
|
|
|
)
|