mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d7a2ddd939
* Add attestation options to config * Add join-config migration path for clusters with old measurement format * Always create MAA provider for Azure SNP clusters * Remove confidential VM option from provider in favor of attestation options * cli: add config migrate command to handle config migration (#1678) --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "config",
|
|
srcs = [
|
|
"attestation.go",
|
|
"config.go",
|
|
"config_doc.go",
|
|
"image.go",
|
|
"validation.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/config",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/attestation/idkeydigest",
|
|
"//internal/attestation/measurements",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/compatibility",
|
|
"//internal/config/imageversion",
|
|
"//internal/config/instancetypes",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/variant",
|
|
"//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 = [
|
|
"attestation_test.go",
|
|
"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",
|
|
"@in_gopkg_yaml_v3//:yaml_v3",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|