Skip to content

Commit 806c73f

Browse files
committed
remove limits entirely
1 parent 17605a7 commit 806c73f

File tree

1 file changed

+0
-8
lines changed
  • scaletest/templates/scaletest-runner

1 file changed

+0
-8
lines changed

scaletest/templates/scaletest-runner/main.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ locals {
3939
workspace_pod_instance = "coder-workspace-${lower(data.coder_workspace.me.owner)}-${lower(data.coder_workspace.me.name)}"
4040
workspace_pod_termination_grace_period_seconds = 5 * 60 * 60 # 5 hours (cleanup timeout).
4141
service_account_name = "scaletest-sa"
42-
cpu = 32
43-
memory = 256
4442
home_disk_size = 10
4543
scaletest_run_id = "scaletest-${replace(time_static.start_time.rfc3339, ":", "-")}"
4644
scaletest_run_dir = "/home/coder/${local.scaletest_run_id}"
@@ -825,16 +823,10 @@ resource "kubernetes_pod" "main" {
825823
}
826824
}
827825
resources {
828-
# Set requests and limits values such that we can do performant
829-
# execution of `coder scaletest` commands.
830826
requests = {
831827
"cpu" = "250m"
832828
"memory" = "512Mi"
833829
}
834-
limits = {
835-
"cpu" = "${local.cpu}"
836-
"memory" = "${local.memory}Gi"
837-
}
838830
}
839831
volume_mount {
840832
mount_path = "/home/coder"

0 commit comments

Comments
 (0)