Files
nomad/enos/enos-modules.hcl
Juana De La Cuesta c5d74a96a3 Add module to upgrade clients (#25055)
* func: add module to upgrade clients

* func: add polling to verify the metadata to make sure all clients are up

* style: remove unused code

* fix: Give the allocations a little time to get to the expected number on teh test health check, to avoid possible flaky tests in the future

* fix: set the upgrade version as clients version for the last health check
2025-02-10 17:03:54 +01:00

27 lines
501 B
HCL

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
module "build_artifactory" {
source = "./modules/fetch_artifactory"
}
module "provision_cluster" {
source = "../e2e/terraform/provision-infra"
}
module "run_workloads" {
source = "./modules/run_workloads"
}
module "test_cluster_health" {
source = "./modules/test_cluster_health"
}
module "upgrade_servers" {
source = "./modules/upgrade_servers"
}
module "upgrade_clients" {
source = "./modules/upgrade_clients"
}