load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = ["controller_test.go"], data = [ "//hack/tools:etcd", "//hack/tools:kube-apiserver", "//hack/tools:kubectl", ], tags = ["integration"], visibility = ["//visibility:public"], deps = [ "//pkg/edge/apis/syncedobject/apis/v1alpha1", "//pkg/edge/chariot", "//pkg/edge/chariot/client", "//pkg/edge/controllers/syncedobject", "//pkg/k8s/runtime/conditions", "//pkg/lib/promassert", "//test/f2", "//test/f2/x/ktest", "//test/f2/x/pstest", "@com_github_google_uuid//:uuid", "@com_github_prometheus_client_golang//prometheus", "@com_github_stretchr_testify//require", "@com_google_cloud_go_pubsub//:pubsub", "@in_gopkg_yaml_v2//:yaml_v2", "@io_k8s_apimachinery//pkg/apis/meta/v1:meta", "@io_k8s_apimachinery//pkg/types", "@io_k8s_sigs_controller_runtime//pkg/client", "@io_k8s_sigs_controller_runtime//pkg/controller/controllerutil", "@org_golang_google_api//option", ], )