load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "lumperctl", srcs = [ "config.go", "controller.go", "controller_utils.go", "oci.go", "shipment_controller.go", "shipment_walker.go", "unpacked_pallet_controller.go", ], importpath = "edge-infra.dev/pkg/f8n/warehouse/k8s/controllers/lumperctl", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse", "//pkg/f8n/warehouse/cluster", "//pkg/f8n/warehouse/k8s/apis/v1alpha2", "//pkg/f8n/warehouse/k8s/controllers/lumperctl/internal", "//pkg/f8n/warehouse/lift/unpack", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/cache", "//pkg/f8n/warehouse/oci/layer", "//pkg/f8n/warehouse/oci/walk", "//pkg/f8n/warehouse/pallet", "//pkg/k8s/meta", "//pkg/k8s/meta/status", "//pkg/k8s/runtime/client", "//pkg/k8s/runtime/conditions", "//pkg/k8s/runtime/controller", "//pkg/k8s/runtime/controller/metrics", "//pkg/k8s/runtime/controller/reconcile", "//pkg/k8s/runtime/controller/reconcile/recerr", "//pkg/k8s/runtime/inventory", "//pkg/k8s/runtime/patch", "//pkg/k8s/runtime/sap", "//pkg/k8s/unstructured", "//pkg/lib/fog", "//pkg/lib/runtime/version", "@com_github_go_logr_logr//:logr", "@com_github_google_go_containerregistry//pkg/logs", "@com_github_google_go_containerregistry//pkg/name", "@com_github_google_go_containerregistry//pkg/v1:pkg", "@com_github_google_go_containerregistry//pkg/v1/remote", "@com_github_peterbourgon_ff_v3//:ff", "@io_k8s_api//core/v1:core", "@io_k8s_apimachinery//pkg/apis/meta/v1:meta", "@io_k8s_apimachinery//pkg/runtime", "@io_k8s_apimachinery//pkg/util/runtime", "@io_k8s_client_go//kubernetes/scheme", "@io_k8s_sigs_controller_runtime//:controller-runtime", "@io_k8s_sigs_controller_runtime//pkg/builder", "@io_k8s_sigs_controller_runtime//pkg/client", "@io_k8s_sigs_controller_runtime//pkg/controller", "@io_k8s_sigs_controller_runtime//pkg/controller/controllerutil", "@io_k8s_sigs_controller_runtime//pkg/predicate", "@org_uber_go_multierr//:multierr", ], )