File tree 1 file changed +0
-8
lines changed
scaletest/templates/scaletest-runner 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ locals {
39
39
workspace_pod_instance = " coder-workspace-${ lower (data. coder_workspace . me . owner )} -${ lower (data. coder_workspace . me . name )} "
40
40
workspace_pod_termination_grace_period_seconds = 5 * 60 * 60 # 5 hours (cleanup timeout).
41
41
service_account_name = " scaletest-sa"
42
- cpu = 32
43
- memory = 256
44
42
home_disk_size = 10
45
43
scaletest_run_id = " scaletest-${ replace (time_static. start_time . rfc3339 , " :" , " -" )} "
46
44
scaletest_run_dir = " /home/coder/${ local . scaletest_run_id } "
@@ -825,16 +823,10 @@ resource "kubernetes_pod" "main" {
825
823
}
826
824
}
827
825
resources {
828
- # Set requests and limits values such that we can do performant
829
- # execution of `coder scaletest` commands.
830
826
requests = {
831
827
" cpu" = " 250m"
832
828
" memory" = " 512Mi"
833
829
}
834
- limits = {
835
- " cpu" = " ${ local . cpu } "
836
- " memory" = " ${ local . memory } Gi"
837
- }
838
830
}
839
831
volume_mount {
840
832
mount_path = " /home/coder"
You can’t perform that action at this time.
0 commit comments