mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
4284f892ce
* rename to attestationconfigapi + put client and fetcher inside pkg * rename api/version to versionsapi and put fetcher + client inside pkg * rename AttestationConfigAPIFetcher to Fetcher
57 lines
1.5 KiB
Python
57 lines
1.5 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
load("//bazel/go:go_test.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "upgrade",
|
|
srcs = [
|
|
"helm.go",
|
|
"image.go",
|
|
"upgrade.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/e2e/internal/upgrade",
|
|
visibility = ["//e2e:__subpackages__"],
|
|
deps = [
|
|
"//internal/api/versionsapi",
|
|
"//internal/attestation/measurements",
|
|
"//internal/cloud/cloudprovider",
|
|
"//internal/constants",
|
|
"//internal/imagefetcher",
|
|
"//internal/logger",
|
|
"//internal/variant",
|
|
"@sh_helm_helm_v3//pkg/action",
|
|
"@sh_helm_helm_v3//pkg/cli",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "upgrade_test",
|
|
srcs = ["upgrade_test.go"],
|
|
# keep
|
|
count = 1,
|
|
data = [
|
|
"//cli:cli_enterprise_host",
|
|
],
|
|
embed = [":upgrade"],
|
|
env = {
|
|
"PATH_CLI": "$(rlocationpath //cli:cli_enterprise_host)",
|
|
},
|
|
# keep
|
|
gotags = ["e2e"],
|
|
tags = ["manual"],
|
|
deps = [
|
|
"//e2e/internal/kubectl",
|
|
"//internal/api/attestationconfigapi",
|
|
"//internal/config",
|
|
"//internal/constants",
|
|
"//internal/file",
|
|
"//internal/semver",
|
|
"//internal/versions",
|
|
"@com_github_spf13_afero//:afero",
|
|
"@com_github_stretchr_testify//require",
|
|
"@io_bazel_rules_go//go/runfiles:go_default_library",
|
|
"@io_k8s_api//core/v1:core",
|
|
"@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
|
|
"@io_k8s_client_go//kubernetes",
|
|
],
|
|
)
|