From 1f14b994e478b0f0bce8de2610a4c64b5f3eeb4c Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Sun, 17 May 2026 00:06:32 +0200 Subject: [PATCH] =?UTF-8?q?infra(argo):=20fix=20MBP-10=20data=20path=20?= =?UTF-8?q?=E2=80=94=20futures-baseline-mbp10/ES.FUT?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The training-data PVC actually has its MBP-10 .dbn.zst files at /data/futures-baseline-mbp10/ES.FUT (9 files for ES futures), NOT at /data/futures-baseline/mbp10. The latter path doesn't exist; the prev run's bash check fired exit 1 with "MBP-10 data directory not found". The PVC root layout (from a probe pod): /data/bin/ <- compiled binaries by SHA /data/feature-cache/ <- predecoded sidecar cache /data/futures-baseline/{ES,NQ,ZN,6E}.FUT/ <- legacy multi-asset /data/futures-baseline-mbp10/ES.FUT/ <- ES MBP-10 (this is what we want) /data/futures-baseline-trades/ES.FUT/ <- ES trades /data/futures-baseline-1s/ES.FUT/ <- 1-second OHLCV /data/trained-models/ <- model checkpoints Co-Authored-By: Claude Opus 4.7 --- infra/k8s/argo/alpha-perception-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/k8s/argo/alpha-perception-template.yaml b/infra/k8s/argo/alpha-perception-template.yaml index 7f5f78aab..010cf945c 100644 --- a/infra/k8s/argo/alpha-perception-template.yaml +++ b/infra/k8s/argo/alpha-perception-template.yaml @@ -388,7 +388,7 @@ spec: set -e SHA="{{inputs.parameters.sha}}" BIN="/data/bin/$SHA/alpha_train" - MBP10_DIR="/data/futures-baseline/mbp10" + MBP10_DIR="/data/futures-baseline-mbp10/ES.FUT" PREDECODED_DIR="/feature-cache/predecoded" OUT_DIR="/feature-cache/alpha-perception-runs/$SHA" mkdir -p "$OUT_DIR" "$PREDECODED_DIR"