...
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/edge/apis/cluster/v1alpha1",
17 "//pkg/sds/remoteaccess/constants",
18 "//pkg/sds/remoteaccess/k8s/apis/vpnconfigs/v1:vpnconfigs",
19 "//pkg/sds/remoteaccess/wireguard/client",
20 "//pkg/sds/remoteaccess/wireguard/store",
21 "//test/f2",
22 "//test/f2/x/ktest",
23 "@com_github_stretchr_testify//assert",
24 "@com_github_stretchr_testify//require",
25 "@io_k8s_api//core/v1:core",
26 "@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
27 ],
28)
View as plain text