mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
2afddcb0f8
* 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>
19 lines
590 B
Python
19 lines
590 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "v1beta1",
|
|
srcs = [
|
|
"groupversion_info.go",
|
|
"nodemaintenance_types.go",
|
|
"zz_generated.deepcopy.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/3rdparty/node-maintenance-operator/api/v1beta1",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
|
|
"@io_k8s_apimachinery//pkg/runtime",
|
|
"@io_k8s_apimachinery//pkg/runtime/schema",
|
|
"@io_k8s_sigs_controller_runtime//pkg/scheme",
|
|
],
|
|
)
|