diff --git a/infra/k8s/argo/feature-cache-pvc.yaml b/infra/k8s/argo/feature-cache-pvc.yaml new file mode 100644 index 000000000..b464a1b4f --- /dev/null +++ b/infra/k8s/argo/feature-cache-pvc.yaml @@ -0,0 +1,18 @@ +# Dedicated PVC for precomputed .fxcache files. +# Survives workflow completions (unlike workspace volumeClaimTemplate). +# Precompute writes here, all training steps read from here. +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: feature-cache-pvc + namespace: foxhunt + labels: + app.kubernetes.io/name: feature-cache + app.kubernetes.io/part-of: foxhunt +spec: + accessModes: + - ReadWriteOnce + storageClassName: scw-bssd-retain + resources: + requests: + storage: 10Gi