mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
* 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
27 lines
501 B
HCL
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"
|
|
}
|