mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 09:55:44 +03:00
* func: add possibility of having different binaries for server and clients * style: rename binaries modules * docs: update comments * fix: correct the token input variable for fetch binaries
27 lines
495 B
HCL
27 lines
495 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_clients" {
|
|
source = "./modules/upgrade_clients"
|
|
}
|