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 = "config",
|
|
|
|
srcs = [
|
2023-04-06 11:00:56 -04:00
|
|
|
"attestation.go",
|
2023-03-09 09:23:42 -05:00
|
|
|
"config.go",
|
|
|
|
"config_doc.go",
|
2023-04-13 11:44:23 -04:00
|
|
|
"image.go",
|
2023-03-09 09:23:42 -05:00
|
|
|
"validation.go",
|
|
|
|
],
|
|
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/config",
|
|
|
|
visibility = ["//:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//internal/attestation/idkeydigest",
|
|
|
|
"//internal/attestation/measurements",
|
|
|
|
"//internal/cloud/cloudprovider",
|
|
|
|
"//internal/compatibility",
|
2023-04-03 12:09:03 -04:00
|
|
|
"//internal/config/imageversion",
|
2023-03-09 09:23:42 -05:00
|
|
|
"//internal/config/instancetypes",
|
|
|
|
"//internal/constants",
|
|
|
|
"//internal/file",
|
2023-03-29 03:30:13 -04:00
|
|
|
"//internal/variant",
|
2023-03-09 09:23:42 -05:00
|
|
|
"//internal/versions",
|
|
|
|
"//internal/versionsapi",
|
|
|
|
"@com_github_go_playground_locales//en",
|
|
|
|
"@com_github_go_playground_universal_translator//:universal-translator",
|
|
|
|
"@com_github_go_playground_validator_v10//:validator",
|
|
|
|
"@com_github_go_playground_validator_v10//translations/en",
|
|
|
|
"@com_github_siderolabs_talos_pkg_machinery//config/encoder",
|
|
|
|
"@org_golang_x_mod//semver",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "config_test",
|
|
|
|
srcs = [
|
2023-04-06 11:00:56 -04:00
|
|
|
"attestation_test.go",
|
2023-03-09 09:23:42 -05:00
|
|
|
"config_test.go",
|
|
|
|
"validation_test.go",
|
|
|
|
],
|
|
|
|
data = glob(["testdata/**"]),
|
|
|
|
embed = [":config"],
|
|
|
|
deps = [
|
|
|
|
"//internal/attestation/measurements",
|
|
|
|
"//internal/cloud/cloudprovider",
|
|
|
|
"//internal/config/instancetypes",
|
|
|
|
"//internal/constants",
|
|
|
|
"//internal/file",
|
|
|
|
"@com_github_go_playground_locales//en",
|
|
|
|
"@com_github_go_playground_universal_translator//:universal-translator",
|
|
|
|
"@com_github_go_playground_validator_v10//:validator",
|
|
|
|
"@com_github_spf13_afero//:afero",
|
|
|
|
"@com_github_stretchr_testify//assert",
|
|
|
|
"@com_github_stretchr_testify//require",
|
2023-04-06 11:00:56 -04:00
|
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
2023-03-09 09:23:42 -05:00
|
|
|
"@org_uber_go_goleak//:goleak",
|
|
|
|
],
|
|
|
|
)
|