-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: make dev cluster the default Terraform vars file (#9202)
Most of the time that a human is running the TF provisioning, they want the "dev cluster" which is going to deploy an OSS sha, with fewer targets and configuration alternatives. But the default `terraform.tfvars` is the nightly E2E run. Because the nightly run is automated, there's no reason we can't have it pick a non-default `terraform.full.tfvars` file and have the default be the dev cluster.
- Loading branch information
Showing
5 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
region = "us-east-1" | ||
instance_type = "t3.medium" | ||
server_count = "3" | ||
client_count = "4" | ||
windows_client_count = "1" | ||
profile = "full-cluster" | ||
nomad_enterprise = true | ||
nomad_acls = true | ||
vault = true | ||
volumes = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
region = "us-east-1" | ||
instance_type = "t3.medium" | ||
server_count = "3" | ||
client_count = "4" | ||
windows_client_count = "1" | ||
profile = "full-cluster" | ||
nomad_enterprise = true | ||
nomad_acls = true | ||
client_count = "2" | ||
windows_client_count = "0" | ||
profile = "dev-cluster" | ||
nomad_acls = false | ||
nomad_enterprise = false | ||
vault = true | ||
volumes = true | ||
volumes = false | ||
|
||
# Example overrides: | ||
# nomad_local_binary = "../../pkg/linux_amd/nomad" | ||
# nomad_local_binary_client_windows = ["../../pkg/windows_amd64/nomad.exe"] |
This file was deleted.
Oops, something went wrong.