From bb1f4039742b8aaaf27495fb41ce52391450292b Mon Sep 17 00:00:00 2001 From: pokeeffe-molecula Date: Thu, 10 Feb 2022 13:56:59 -0600 Subject: [PATCH] fixes to able defn --- qa/tf/.modules/featurebase-cluster/main.tf | 2 +- qa/tf/gauntlet/able/main.tf | 11 ++++++----- qa/tf/gauntlet/able/outputs.tf | 8 ++++---- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/qa/tf/.modules/featurebase-cluster/main.tf b/qa/tf/.modules/featurebase-cluster/main.tf index d21fbd4df..026fe3c6a 100644 --- a/qa/tf/.modules/featurebase-cluster/main.tf +++ b/qa/tf/.modules/featurebase-cluster/main.tf @@ -13,7 +13,7 @@ data "aws_ami" "amazon_linux_2" { filter { name = "architecture" - values = ["arm64"] + values = ["arm64", "x86_64"] } } diff --git a/qa/tf/gauntlet/able/main.tf b/qa/tf/gauntlet/able/main.tf index 3434c407d..e15309423 100644 --- a/qa/tf/gauntlet/able/main.tf +++ b/qa/tf/gauntlet/able/main.tf @@ -1,14 +1,15 @@ -module "samsung-cluster" { +module "able-cluster" { source = "../../.modules/featurebase-cluster" cluster_prefix = var.cluster_prefix region = var.region profile = var.profile - fb_data_node_type = "m6g.xlarge" + fb_data_node_type = "m6i.12xlarge" fb_data_disk_iops = 10000 - fb_data_node_count = 5 - fb_ingest_type = "m6g.large" + fb_data_node_count = 3 + fb_ingest_type = "m6i.2xlarge" fb_ingest_disk_iops = 10000 - fb_ingest_node_count = 5 + fb_ingest_disk_size_gb = 500 + fb_ingest_node_count = 1 vpc_id = "vpc-05a26a122f961dc2b" vpc_cidr_block = "10.0.0.0/16" vpc_public_subnets = ["subnet-066b4b922b54e51a2","subnet-037b8884269a69025","subnet-08482631514426210",] diff --git a/qa/tf/gauntlet/able/outputs.tf b/qa/tf/gauntlet/able/outputs.tf index c00860a34..43acb92ab 100644 --- a/qa/tf/gauntlet/able/outputs.tf +++ b/qa/tf/gauntlet/able/outputs.tf @@ -1,19 +1,19 @@ output "ingest_ips" { description = "List of ingest IPs" - value = module.samsung-cluster.ingest_ips + value = module.able-cluster.ingest_ips } output "data_node_ips" { description = "List of data node IPs" - value = module.samsung-cluster.data_node_ips + value = module.able-cluster.data_node_ips } output "cluster_prefix" { description = "The cluster prefix used" - value = module.samsung-cluster.cluster_prefix + value = module.able-cluster.cluster_prefix } output "fb_cluster_replica_count" { description = "The cluster replica count used" - value = module.samsung-cluster.fb_cluster_replica_count + value = module.able-cluster.fb_cluster_replica_count }