Skip to content

Commit 357f3b3

Browse files
authored
fix: scaletest: mount CODER_CACHE volume under /tmp (#8271)
Mounting the CODER_CACHE volume under /tmp/coder causes template creation to fail due to read-only tmp dir.
1 parent 6639c69 commit 357f3b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaletest/terraform/coder.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ coder:
130130
sessionAffinity: None
131131
loadBalancerIP: "${local.coder_address}"
132132
volumeMounts:
133-
- mountPath: "/tmp/coder"
133+
- mountPath: "/tmp"
134134
name: cache
135135
readOnly: false
136136
volumes:

0 commit comments

Comments
 (0)