From 9a364e2fd86b92f3f84b5a4316a1bc439751671c Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Mon, 25 May 2026 09:34:18 +0200 Subject: [PATCH] fix(argo): alpha-rl reads predecoded from feature-cache PVC The MBP-10 predecoded sidecars live on feature-cache-pvc at /feature-cache/predecoded/, not on training-data-pvc. Points --predecoded-dir to the correct PVC mount. Co-Authored-By: Claude Opus 4.7 --- infra/k8s/argo/train-multi-seed-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/k8s/argo/train-multi-seed-template.yaml b/infra/k8s/argo/train-multi-seed-template.yaml index 95a18c922..9235e6a59 100644 --- a/infra/k8s/argo/train-multi-seed-template.yaml +++ b/infra/k8s/argo/train-multi-seed-template.yaml @@ -518,7 +518,7 @@ spec: if [ "$MODEL" = "alpha-rl" ]; then stdbuf -oL $NSYS_PREFIX ${BINARY} \ --mbp10-data-dir /data/futures-baseline-mbp10/{{workflow.parameters.symbol}} \ - --predecoded-dir /data/futures-baseline-mbp10/{{workflow.parameters.symbol}} \ + --predecoded-dir /feature-cache/predecoded \ --out /workspace/output \ --n-steps 50000 \ --n-backtests 16 \