From d72fec1b325aff7b385f9a206e082f6d84a264a0 Mon Sep 17 00:00:00 2001 From: Brian Hayden <5826711+bhayden53@users.noreply.github.com> Date: Mon, 10 May 2021 19:25:11 -0400 Subject: [PATCH 1/2] quickfix for ebs volume on ops --- terraform/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 37f86ccf..841b275a 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -52,7 +52,7 @@ variable lt_ebs_type { "-sb" = "gp2" "-dev" = "gp2" "-test" = "gp3" - "-ops" = "gp2" + "-ops" = "gp3" } } @@ -65,7 +65,7 @@ variable lt_ebs_iops { "-sb" = 0 "-dev" = 0 "-test" = 3000 - "-ops" = 0 + "-ops" = 3000 } } @@ -78,7 +78,7 @@ variable lt_ebs_throughput { "-sb" = null "-dev" = null "-test" = 250 - "-ops" = null + "-ops" = 250 } } From 30ae52c98a8e9afb6728974a8022f446aefc427c Mon Sep 17 00:00:00 2001 From: Brian Hayden <5826711+bhayden53@users.noreply.github.com> Date: Tue, 11 May 2021 09:20:40 -0400 Subject: [PATCH 2/2] deploy script prep for potential build --- terraform/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/deploy.sh b/terraform/deploy.sh index ecc8242b..b0f68c8c 100755 --- a/terraform/deploy.sh +++ b/terraform/deploy.sh @@ -3,7 +3,7 @@ # ADMIN_ARN is set in the ci node env and should not be included in this deploy script # variables that will likely be changed frequently -CALCLOUD_VER="0.4.13" +CALCLOUD_VER="0.4.13-qf1" CALDP_VER="0.2.8" CAL_BASE_IMAGE="stsci/hst-pipeline:CALDP_20210415_CAL_final"