Skip to content

Commit

Permalink
ECS: Decrease resource reservations
Browse files Browse the repository at this point in the history
  • Loading branch information
dnillovna committed May 6, 2024
1 parent 12758dd commit 8eaf286
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
Expand All @@ -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."
}
Expand All @@ -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."
}
Expand All @@ -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."
}
Expand Down

0 comments on commit 8eaf286

Please sign in to comment.