From 1cccb4e40ebe5bf9bde8d9ec63b13d6ffe77b387 Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Tue, 19 May 2026 11:52:19 +0200 Subject: [PATCH] fix(infra): lob-backtest-sweep volume claim name training-data -> training-data-pvc The template referenced PVC 'training-data' but the actual claim in the foxhunt namespace is 'training-data-pvc' (matches the convention used by other workflows like alpha-perception-template). Without this fix, ensure-binary + run-cell + aggregate pods all stayed Pending forever with 'persistentvolumeclaim "training-data" not found', blocking every smoke / threshold-tuning / deployability sweep. Verified: smoke sweep lob-backtest-sweep-jp48v scheduled ensure-binary onto the ci-compile-cpu pool (autoscaler triggered scale-up 0->1 within seconds of resubmission). --- infra/k8s/argo/lob-backtest-sweep-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/k8s/argo/lob-backtest-sweep-template.yaml b/infra/k8s/argo/lob-backtest-sweep-template.yaml index 99e7299b0..2bb26d1a0 100644 --- a/infra/k8s/argo/lob-backtest-sweep-template.yaml +++ b/infra/k8s/argo/lob-backtest-sweep-template.yaml @@ -91,7 +91,7 @@ spec: volumes: - name: training-data persistentVolumeClaim: - claimName: training-data + claimName: training-data-pvc - name: git-ssh-key secret: secretName: git-ssh-key