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