mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
90f3336c8e
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
28 lines
746 B
Python
28 lines
746 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "patch",
|
|
srcs = [
|
|
"annotations.go",
|
|
"labels.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/internal/patch",
|
|
visibility = ["//operators/constellation-node-operator:__subpackages__"],
|
|
deps = ["@io_k8s_sigs_controller_runtime//pkg/client"],
|
|
)
|
|
|
|
go_test(
|
|
name = "patch_test",
|
|
srcs = [
|
|
"annotations_test.go",
|
|
"labels_test.go",
|
|
],
|
|
embed = [":patch"],
|
|
deps = [
|
|
"@com_github_stretchr_testify//assert",
|
|
"@io_k8s_api//core/v1:core",
|
|
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
|
|
],
|
|
)
|