apiVersion: batch/v1 kind: Job metadata: name: demo-seed-production-batches namespace: bakery-ia labels: app: demo-seed component: initialization annotations: "helm.sh/hook": post-install,post-upgrade "helm.sh/hook-weight": "30" # After equipment (25) and other dependencies spec: ttlSecondsAfterFinished: 3600 template: metadata: labels: app: demo-seed-production-batches spec: initContainers: - name: wait-for-production-migration image: busybox:1.36 command: - sh - -c - | echo "Waiting 30 seconds for production-migration to complete..." sleep 30 - name: wait-for-production-service image: curlimages/curl:latest command: - sh - -c - | echo "Waiting for production-service to be ready..." until curl -f http://production-service.bakery-ia.svc.cluster.local:8000/health/ready > /dev/null 2>&1; do echo "production-service not ready yet, waiting..." sleep 5 done echo "production-service is ready!" containers: - name: seed-production-batches image: bakery/production-service:latest command: ["python", "/app/scripts/demo/seed_demo_batches.py"] env: - name: PRODUCTION_DATABASE_URL valueFrom: secretKeyRef: name: database-secrets key: PRODUCTION_DATABASE_URL - name: DEMO_MODE value: "production" - name: LOG_LEVEL value: "INFO" resources: requests: memory: "256Mi" cpu: "100m" limits: memory: "512Mi" cpu: "500m" restartPolicy: OnFailure serviceAccountName: demo-seed-sa