"""fetches kubevirt cdi manifests""" load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file") load(":version.bzl", "VERSION") def fetch_kubevirt_cdi_manifests(): """Returns all http_* targets for kubevirt cdi manifest bundles we rely on""" http_file( name = "kubevirt_cdi_crds", sha256 = "691dd4697ad1c08b498cac5b0ee2cf5505fa1b4d151980a1110866d40d57f39f", urls = ["https://github.com/kubevirt/containerized-data-importer/releases/download/{version}/cdi-cr.yaml".format( version = VERSION, )], ) http_file( name = "kubevirt_cdi_operator", sha256 = "5d91f94b642f21941ee169dbbe9e20bde5a73dc5734c272483f72f6c593fce00", urls = ["https://github.com/kubevirt/containerized-data-importer/releases/download/{version}/cdi-operator.yaml".format( version = VERSION, )], )