...

Text file src/edge-infra.dev/config/pallets/edge/envctl/BUILD.bazel

Documentation: edge-infra.dev/config/pallets/edge/envctl

     1"""
     2This BUILD file defines YAML generation targets for cmd/x/persistence
     3"""
     4
     5load("//hack/tools/controller-gen:controller-gen.bzl", "gen_crds", "gen_rbac")
     6
     7package(default_visibility = ["//visibility:public"])
     8
     9gen_rbac(
    10    name = "gen_rbac",
    11    outpath_relative_to_repo_root = True,
    12    pkg = "pkg/edge/controllers/envctl",
    13    rbac_out_path = "config/pallets/edge/envctl/base",
    14    role_name = "envctl",
    15)
    16
    17gen_crds(
    18    name = "gen_crds",
    19    crd_out_path = "config/pallets/edge/envctl/base",
    20    outpath_relative_to_repo_root = True,
    21    pkg = "pkg/edge/apis/persistence/v1alpha1",
    22)

View as plain text