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.
This commit is contained in:
Cian Johnston
2023-06-30 12:48:34 +01:00
committed by GitHub
parent 6639c69fad
commit 357f3b38f7

View File

@ -130,7 +130,7 @@ coder:
sessionAffinity: None
loadBalancerIP: "${local.coder_address}"
volumeMounts:
- mountPath: "/tmp/coder"
- mountPath: "/tmp"
name: cache
readOnly: false
volumes: