mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
* func: add dependencies to avoid race conditions and move the update to each client to the main upgrade scenario * Update enos/enos-scenario-upgrade.hcl Co-authored-by: Tim Gross <tgross@hashicorp.com> * Update enos/enos-scenario-upgrade.hcl Co-authored-by: Tim Gross <tgross@hashicorp.com> --------- Co-authored-by: Tim Gross <tgross@hashicorp.com>
27 lines
493 B
HCL
27 lines
493 B
HCL
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module "fetch_binaries" {
|
|
source = "./modules/fetch_binaries"
|
|
}
|
|
|
|
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_client" {
|
|
source = "./modules/upgrade_client"
|
|
}
|