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