- Delete 22 dead/placeholder/broken example files (-3,489 lines code) - Delete 4 tracked CSV files (-1.1M lines, were accidentally committed) - Move baseline training data default from data/cache/ to test_data/ - Update 5 unified binary defaults, gitignore, k8s upload comment, docs - Consolidate all training data under test_data/futures-baseline/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
799 B
YAML
26 lines
799 B
YAML
# Temporary pod for uploading training data to PVC.
|
|
# Usage:
|
|
# 1. kubectl apply -f infra/k8s/training/training-data-pvc.yaml
|
|
# 2. kubectl apply -f infra/k8s/training/data-upload-job.yaml
|
|
# 3. kubectl cp test_data/futures-baseline foxhunt/data-upload:/data/futures-baseline
|
|
# 4. kubectl cp test_data/futures-baseline-l2 foxhunt/data-upload:/data/futures-baseline-l2
|
|
# 5. kubectl delete pod data-upload -n foxhunt
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: data-upload
|
|
namespace: foxhunt
|
|
spec:
|
|
containers:
|
|
- name: upload
|
|
image: busybox:1.36
|
|
command: ["sleep", "3600"]
|
|
volumeMounts:
|
|
- name: training-data
|
|
mountPath: /data
|
|
volumes:
|
|
- name: training-data
|
|
persistentVolumeClaim:
|
|
claimName: training-data-pvc
|
|
restartPolicy: Never
|