constellation/operators/constellation-node-operator/controllers/BUILD.bazel
renovate[bot] 2afddcb0f8
deps: update K8s dependencies (#1599)
* deps: update K8s dependencies

* deps: bump controller runtime

* chore: tidy

* bump helm and migrate controller runtime

* fix helm deprecation

---------

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
Co-authored-by: Leonard Cohnen <lc@edgeless.systems>
2023-05-24 18:57:45 +02:00

78 lines
3.0 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "controllers",
srcs = [
"autoscalingstrategy_controller.go",
"joiningnode_controller.go",
"nodeversion_controller.go",
"nodeversion_watches.go",
"pendingnode_controller.go",
"scalinggroup_controller.go",
],
importpath = "github.com/edgelesssys/constellation/v2/operators/constellation-node-operator/v2/controllers",
visibility = ["//visibility:public"],
deps = [
"//3rdparty/node-maintenance-operator/api/v1beta1",
"//internal/constants",
"//internal/versions/components",
"//operators/constellation-node-operator/api/v1alpha1",
"//operators/constellation-node-operator/internal/node",
"//operators/constellation-node-operator/internal/patch",
"@io_k8s_api//apps/v1:apps",
"@io_k8s_api//core/v1:core",
"@io_k8s_apimachinery//pkg/api/errors",
"@io_k8s_apimachinery//pkg/api/meta",
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
"@io_k8s_apimachinery//pkg/fields",
"@io_k8s_apimachinery//pkg/runtime",
"@io_k8s_apimachinery//pkg/types",
"@io_k8s_apimachinery//pkg/version",
"@io_k8s_client_go//tools/reference",
"@io_k8s_client_go//util/retry",
"@io_k8s_sigs_controller_runtime//:controller-runtime",
"@io_k8s_sigs_controller_runtime//pkg/builder",
"@io_k8s_sigs_controller_runtime//pkg/client",
"@io_k8s_sigs_controller_runtime//pkg/event",
"@io_k8s_sigs_controller_runtime//pkg/handler",
"@io_k8s_sigs_controller_runtime//pkg/log",
"@io_k8s_sigs_controller_runtime//pkg/predicate",
"@io_k8s_sigs_controller_runtime//pkg/reconcile",
"@io_k8s_utils//clock",
"@org_golang_x_mod//semver",
],
)
go_test(
name = "controllers_test",
srcs = [
"client_test.go",
"nodeversion_controller_test.go",
"nodeversion_watches_test.go",
"pendingnode_controller_test.go",
"scalinggroup_controller_test.go",
"schemes_test.go",
],
embed = [":controllers"],
deps = [
"//3rdparty/node-maintenance-operator/api/v1beta1",
"//internal/constants",
"//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/api/errors",
"@io_k8s_apimachinery//pkg/api/meta",
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
"@io_k8s_apimachinery//pkg/runtime",
"@io_k8s_apimachinery//pkg/runtime/schema",
"@io_k8s_apimachinery//pkg/types",
"@io_k8s_apimachinery//pkg/version",
"@io_k8s_client_go//kubernetes/scheme",
"@io_k8s_sigs_controller_runtime//pkg/client",
"@io_k8s_sigs_controller_runtime//pkg/event",
"@io_k8s_sigs_controller_runtime//pkg/reconcile",
],
)