load("@rules_apko//apko:defs.bzl", "apko_image") load("@rules_oci//oci:defs.bzl", "oci_image") load("//hack/build/rules/container:index.bzl", "container_push") apko_image( name = "rancher_helper_base", config = "apko.yaml", contents = "@rancher_helper_lock//:contents", tag = "rancher_helper_base:latest", tags = ["requires-network"], ) oci_image( name = "local-path-provisioner-helper", base = ":rancher_helper_base", tags = [ "manual", "no-remote-cache", ], ) container_push( image = ":local-path-provisioner-helper", image_name = "local-path-provisioner-helper", repository_file = "//hack/build/rules/container:workloads-repo", tags = [ "manual", "no-remote-cache", ], )