From 7a051991bd1791d3ad7b0c41600672a5956eb7f0 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Tue, 4 Mar 2025 11:21:45 -0500 Subject: [PATCH] upgrade testing: temporarily disable CSI test (#25283) The CSI workload is failing and creating complications for teardown, so I'm reworking it. But this work is taking a while to finish, so while that's in progress let's disable the CSI workload so that we're running the upgrade tests all the way through to the end. I expect to be able to revert this in the next couple days. --- enos/enos-scenario-upgrade.hcl | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/enos/enos-scenario-upgrade.hcl b/enos/enos-scenario-upgrade.hcl index 6b66bf711..369519637 100644 --- a/enos/enos-scenario-upgrade.hcl +++ b/enos/enos-scenario-upgrade.hcl @@ -142,19 +142,20 @@ scenario "upgrade" { batch_raw_exec = { job_spec = "jobs/raw-exec-batch.nomad.hcl", alloc_count = 3, type = "batch" } system_raw_exec = { job_spec = "jobs/raw-exec-system.nomad.hcl", alloc_count = 0, type = "system" } - csi_plugin_efs_node = { - job_spec = "jobs/plugin-aws-efs-nodes.nomad.hcl" - alloc_count = 0 - type = "system" - post_script = "scripts/wait_for_efs_plugin.sh" - } + # TODO(tgross): temporarily disabled while this gets redesigned + # csi_plugin_efs_node = { + # job_spec = "jobs/plugin-aws-efs-nodes.nomad.hcl" + # alloc_count = 0 + # type = "system" + # post_script = "scripts/wait_for_efs_plugin.sh" + # } - wants_csi = { - job_spec = "jobs/wants-volume.nomad.hcl" - alloc_count = 1 - type = "service" - pre_script = "scripts/wait_for_efs_volume.sh" - } + # wants_csi = { + # job_spec = "jobs/wants-volume.nomad.hcl" + # alloc_count = 1 + # type = "service" + # pre_script = "scripts/wait_for_efs_volume.sh" + # } } }