mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-23 13:51:06 -05:00
901edd420b
* terraform: remove cloud logging apps * internal/cloud: remove loggers * bootstrapper: remove logging * qemu-metadata-api: remove logging endpoint * docs: add instructions on how to get boot logs * bazel: tidy * docs: fix typo * cloud: remove unused types * Update go.mod Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * bazel: tidy * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * Update docs/docs/workflows/troubleshooting.md Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com> * docs: elaborate on how to get boot logs * bazel: tidy --------- Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> Co-authored-by: Thomas Tendyck <51411342+thomasten@users.noreply.github.com>
51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "azure",
|
|
srcs = [
|
|
"azure.go",
|
|
"imds.go",
|
|
"interface.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/internal/cloud/azure",
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/azureshared",
|
|
"//internal/cloud/metadata",
|
|
"//internal/constants",
|
|
"//internal/logger",
|
|
"//internal/role",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_azcore//runtime",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_azidentity//:azidentity",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_compute_armcompute_v5//:armcompute",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_network_armnetwork_v5//:armnetwork",
|
|
"@io_k8s_kubernetes//pkg/util/iptables",
|
|
"@io_k8s_utils//exec",
|
|
"@org_uber_go_zap//:zap",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "azure_test",
|
|
srcs = [
|
|
"azure_test.go",
|
|
"imds_test.go",
|
|
],
|
|
embed = [":azure"],
|
|
deps = [
|
|
"//internal/cloud",
|
|
"//internal/cloud/metadata",
|
|
"//internal/role",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_azcore//runtime",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_azcore//to",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_compute_armcompute_v5//:armcompute",
|
|
"@com_github_azure_azure_sdk_for_go_sdk_resourcemanager_network_armnetwork_v5//:armnetwork",
|
|
"@com_github_stretchr_testify//assert",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_golang_google_grpc//test/bufconn",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|