constellation/internal/osimage/uplosi/BUILD.bazel
Malte Poll fb392c2d50 image: add image uploader that uses uplosi in the background
This implementation will replace the custom Go code in
internal/osimage/{aws|azure|gcp} and still conforms to the same interface.
2024-01-15 13:53:15 +01:00

17 lines
487 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "uplosi",
srcs = ["uplosiupload.go"],
embedsrcs = ["uplosi.conf.in"],
importpath = "github.com/edgelesssys/constellation/v2/internal/osimage/uplosi",
visibility = ["//:__subpackages__"],
deps = [
"//internal/api/versionsapi",
"//internal/cloud/cloudprovider",
"//internal/logger",
"//internal/osimage",
"@com_github_burntsushi_toml//:toml",
],
)