load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "daemonsetdns", srcs = ["daemonsetdns.go"], importpath = "edge-infra.dev/pkg/sds/k8s/daemonsetdns", visibility = ["//visibility:public"], deps = [ "//pkg/lib/fog", "//pkg/sds/k8s/iplookup", "@com_github_google_uuid//:uuid", "@com_github_miekg_dns//:dns", ], ) go_test( name = "daemonsetdns_test", srcs = ["daemonsetdns_test.go"], embed = [":daemonsetdns"], )