mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
4284f892ce
* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
21 lines
566 B
Python
21 lines
566 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "cli-k8s-compatibility_lib",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/cli-k8s-compatibility",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//internal/api/versionsapi",
|
|
"//internal/logger",
|
|
"//internal/versions",
|
|
"@org_uber_go_zap//zapcore",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "cli-k8s-compatibility",
|
|
embed = [":cli-k8s-compatibility_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|