Skip to content

Commit

Permalink
Reduce limits on eks templates (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-aguilar authored Oct 24, 2023
1 parent 5a0284a commit 0380d09
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions terraform/eks/container-insights-agent/daemonset.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ spec:
mountPath: /conf
resources:
limits:
cpu: 200m
cpu: 100m
memory: 200Mi
requests:
cpu: 200m
cpu: 100m
memory: 200Mi
volumes:
- configMap:
Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/jmx/jmx.tf
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ resource "kubernetes_deployment" "jmx_metric_deployment" {
memory = "180Mi"
}
limits = {
cpu = "300m"
cpu = "200m"
memory = "300Mi"
}
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/otlp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ resource "kubernetes_deployment" "aoc_deployment" {

resources {
limits = {
cpu = "0.2"
cpu = "100m"
memory = "256Mi"
}
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/otlp/pull_mode_samples.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ resource "kubernetes_deployment" "pull_mode_sample_app_deployment" {

resources {
limits = {
cpu = "0.2"
cpu = "100m"
memory = "256Mi"
}

Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/otlp/push_mode_samples.tf
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ resource "kubernetes_deployment" "push_mode_sample_app_deployment" {

resources {
limits = {
cpu = "0.2"
cpu = "100m"
memory = "256Mi"
}
}
Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resource "kubernetes_deployment" "standalone_aoc_deployment" {
}
resources {
limits = {
cpu = "0.2"
cpu = "100m"
memory = "256Mi"
}
}
Expand Down

0 comments on commit 0380d09

Please sign in to comment.