Skip to content

Commit 04a4295

Browse files
authored
refactor: match resource requests/limits with Helm (#38)
This commit updates our Terraform module to default to the same resource limits and requests as the Helm charts in our repo. Fixes RAIN-21619
1 parent 7ac5201 commit 04a4295

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ variable "pod_service_account" {
7171

7272
variable "pod_cpu_request" {
7373
type = string
74-
default = "100m"
74+
default = "200m"
7575
description = "The amount of CPU units to request for the Lacework datacollector pod"
7676
}
7777

@@ -83,13 +83,13 @@ variable "pod_mem_request" {
8383

8484
variable "pod_cpu_limit" {
8585
type = string
86-
default = "1"
86+
default = "500m"
8787
description = "The limit of CPU units for the Lacework datacollector pod"
8888
}
8989

9090
variable "pod_mem_limit" {
9191
type = string
92-
default = "1024Mi"
92+
default = "1450Mi"
9393
description = "The limit of Memory for the Lacework datacollector pod"
9494
}
9595

0 commit comments

Comments
 (0)