2023-03-09 09:23:42 -05:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "node",
|
|
|
|
srcs = ["node.go"],
|
2024-01-08 07:19:38 -05:00
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/internal/node",
|
2023-03-09 09:23:42 -05:00
|
|
|
visibility = ["//operators/constellation-node-operator:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//operators/constellation-node-operator/api/v1alpha1",
|
|
|
|
"@io_k8s_api//core/v1:core",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "node_test",
|
|
|
|
srcs = ["node_test.go"],
|
|
|
|
embed = [":node"],
|
|
|
|
deps = [
|
|
|
|
"//operators/constellation-node-operator/api/v1alpha1",
|
|
|
|
"@com_github_stretchr_testify//assert",
|
|
|
|
"@com_github_stretchr_testify//require",
|
|
|
|
"@io_k8s_api//core/v1:core",
|
|
|
|
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
|
|
|
|
],
|
|
|
|
)
|