load("@io_bazel_rules_go//go:def.bzl", "go_library") load("//hack/build/rules/kustomize:kustomization.bzl", "kustomization") package(default_visibility = ["//visibility:public"]) go_library( name = "embedded_grafana_operator", srcs = ["embed_grafana_operator.go"], embedsrcs = [ "kustomization.yaml", "manifests.yaml", ], importpath = "edge-infra.dev/third_party/k8s/grafana-operator", ) kustomization( name = "grafana-operator", srcs = [ "manifests.yaml", ], kustomization_yaml = "kustomization.yaml", visibility = ["//visibility:public"], )