...

Text file src/edge-infra.dev/third_party/k8s/multus/manifests.bzl

Documentation: edge-infra.dev/third_party/k8s/multus

     1"""fetches multus manifests"""
     2
     3load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
     4load(":version.bzl", "VERSION")
     5
     6def fetch_multus_manifests():
     7    """Returns all http_* targets for multus manifest bundles we rely on"""
     8
     9    http_file(
    10        name = "multus_daemonset",
    11        sha256 = "e79898f936e32e50426d6b23e75f85a71d134918e8f82b612b531146fb2a5a45",
    12        urls = ["https://raw.githubusercontent.com/k8snetworkplumbingwg/multus-cni/{version}/deployments/multus-daemonset.yml".format(
    13            version = VERSION,
    14        )],
    15    )

View as plain text