...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = ["integration_test.go"],
6 data = [
7 "//hack/tools:etcd",
8 "//hack/tools:kube-apiserver",
9 "//hack/tools:kubectl",
10 ],
11 tags = [
12 "integration",
13 ],
14 visibility = ["//visibility:public"],
15 deps = [
16 "//pkg/sds/remoteaccess/constants",
17 "//pkg/sds/remoteaccess/wireguard",
18 "//test/f2",
19 "//test/f2/x/ktest",
20 "@com_github_stretchr_testify//assert",
21 "@com_github_stretchr_testify//require",
22 "@io_k8s_api//core/v1:core",
23 "@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
24 "@io_k8s_sigs_controller_runtime//pkg/client",
25 ],
26)
View as plain text