Files
m3db-vke-setup/backfill/backfill-pod.yaml

19 lines
429 B
YAML
Raw Normal View History

2026-04-01 15:21:10 +00:00
apiVersion: v1
kind: Pod
metadata:
name: backfill-v2
namespace: m3db
spec:
restartPolicy: Never
volumes:
- name: script
configMap:
name: backfill-script-v2
containers:
- name: backfill
image: python:3.11-slim
command: ["sh", "-c", "pip install -q python-snappy requests urllib3 && python3 /scripts/backfill.py"]
volumeMounts:
- name: script
mountPath: /scripts