load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = ["integration_test.go"], data = [ "//hack/tools:etcd", "//hack/tools:kube-apiserver", "//hack/tools:kubectl", ], tags = [ "integration", ], visibility = ["//visibility:public"], deps = [ "//pkg/sds/remoteaccess/constants", "//pkg/sds/remoteaccess/wireguard", "//test/f2", "//test/f2/x/ktest", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", "@io_k8s_api//core/v1:core", "@io_k8s_apimachinery//pkg/apis/meta/v1:meta", "@io_k8s_sigs_controller_runtime//pkg/client", ], )