From 8eaf286ec8b9fe05a635b4df11aa13bacb247b04 Mon Sep 17 00:00:00 2001 From: Sofia Podolsky Date: Mon, 6 May 2024 09:53:02 +0300 Subject: [PATCH] ECS: Decrease resource reservations --- aws/variables.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/aws/variables.tf b/aws/variables.tf index b097b43..f0afa5d 100644 --- a/aws/variables.tf +++ b/aws/variables.tf @@ -488,14 +488,14 @@ variable "enable_route53_logging" { variable "grok_compute_container_memory_reservation" { type = number - default = 1024 + default = 512 nullable = false description = "The soft limit (in MiB) of memory to reserve for the Grok Compute container." } variable "grok_compute_container_cpu" { type = number - default = 1024 + default = 256 nullable = false description = "The number of cpu units the Amazon ECS container agent reserves for the Grok Compute container." } @@ -516,14 +516,14 @@ variable "grok_compute_cpu" { variable "jkg_container_memory_reservation" { type = number - default = 1024 + default = 512 nullable = false description = "The soft limit (in MiB) of memory to reserve for the Jupyter Kernel Gateway container." } variable "jkg_container_cpu" { type = number - default = 512 + default = 256 nullable = false description = "The number of cpu units the Amazon ECS container agent reserves for the Jupyter Kernel Gateway container." } @@ -544,14 +544,14 @@ variable "jkg_cpu" { variable "jn_container_memory_reservation" { type = number - default = 1024 + default = 512 nullable = false description = "The soft limit (in MiB) of memory to reserve for the Jupyter Notebook container." } variable "jn_container_cpu" { type = number - default = 512 + default = 256 nullable = false description = "The number of cpu units the Amazon ECS container agent reserves for the Jupyter Notebook container." } @@ -572,14 +572,14 @@ variable "jn_cpu" { variable "h2o_container_memory_reservation" { type = number - default = 1024 + default = 512 nullable = false description = "The soft limit (in MiB) of memory to reserve for the H2O container." } variable "h2o_container_cpu" { type = number - default = 512 + default = 256 nullable = false description = "The number of cpu units the Amazon ECS container agent reserves for the H2O container." }