mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
22 lines
603 B
Python
22 lines
603 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/logger",
|
||
|
"//internal/versions",
|
||
|
"//internal/versionsapi",
|
||
|
"//internal/versionsapi/client",
|
||
|
"@org_uber_go_zap//zapcore",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_binary(
|
||
|
name = "cli-k8s-compatibility",
|
||
|
embed = [":cli-k8s-compatibility_lib"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|