mirror of
https://github.com/coder/coder.git
synced 2025-07-06 15:41:45 +00:00
Updates scaletest terraform with learnings from #8213: - Increase max pods per node to 256 - Decrease CPU requests for test workspace to allow maxing out workspaces per node - Explicitly set CODER_ACCESS_URL for ssh to work - Explicitly disable rate limits in coderd - Increase DB size for medium and large scenarios - Mount cache volume directly under /tmp/coder instead of /tmp. - Plumb through requests and limits for workspaces - Plumb through requests for coderd
8 lines
403 B
HCL
8 lines
403 B
HCL
nodepool_machine_type_coder = "t2d-standard-8"
|
|
nodepool_machine_type_workspaces = "t2d-standard-8"
|
|
cloudsql_tier = "db-custom-1-3840"
|
|
coder_cpu_request = "3000m"
|
|
coder_mem_request = "12Gi"
|
|
coder_cpu_limit = "6000m" # Leaving 2 CPUs for system workloads
|
|
coder_mem_limit = "24Gi" # Leaving 8 GB for system workloads
|