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