...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "daemonsetdns",
5 srcs = ["daemonsetdns.go"],
6 importpath = "edge-infra.dev/pkg/sds/k8s/daemonsetdns",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//pkg/lib/fog",
10 "//pkg/sds/k8s/iplookup",
11 "@com_github_google_uuid//:uuid",
12 "@com_github_miekg_dns//:dns",
13 ],
14)
15
16go_test(
17 name = "daemonsetdns_test",
18 srcs = ["daemonsetdns_test.go"],
19 embed = [":daemonsetdns"],
20)
View as plain text