From a25f783f8fc9e43ead49a30dafaf66ad838185e1 Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Fri, 30 Jun 2023 12:41:15 +0100 Subject: [PATCH] fix: scaletest: mount CODER_CACHE volume under /tmp Mounting the CODER_CACHE volume under /tmp/coder causes template creation to fail due to read-only tmp dir. --- scaletest/terraform/coder.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scaletest/terraform/coder.tf b/scaletest/terraform/coder.tf index e216766a5a3da..ad93d100ed5e0 100644 --- a/scaletest/terraform/coder.tf +++ b/scaletest/terraform/coder.tf @@ -130,7 +130,7 @@ coder: sessionAffinity: None loadBalancerIP: "${local.coder_address}" volumeMounts: - - mountPath: "/tmp/coder" + - mountPath: "/tmp" name: cache readOnly: false volumes: