...

Text file src/edge-infra.dev/third_party/k8s/node-exporter/BUILD.bazel

Documentation: edge-infra.dev/third_party/k8s/node-exporter

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2load("//hack/build/rules/kustomize:kustomization.bzl", "kustomization")
     3
     4package(default_visibility = ["//visibility:public"])
     5
     6go_library(
     7    name = "embedded_node_exporter",
     8    srcs = ["embed_ne.go"],
     9    embedsrcs = [
    10        "kustomization.yaml",
    11        "manifests.yaml",
    12    ],
    13    importpath = "edge-infra.dev/third_party/k8s/node-exporter",
    14    visibility = ["//visibility:public"],
    15)
    16
    17kustomization(
    18    name = "node-exporter",
    19    srcs = ["manifests.yaml"],
    20    kustomization_yaml = "kustomization.yaml",
    21    visibility = ["//visibility:public"],
    22)

View as plain text