68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: demo-seed-orchestration-runs
|
|
namespace: bakery-ia
|
|
labels:
|
|
app: demo-seed
|
|
component: initialization
|
|
annotations:
|
|
"helm.sh/hook": post-install,post-upgrade
|
|
"helm.sh/hook-weight": "45" # After procurement plans (35)
|
|
spec:
|
|
ttlSecondsAfterFinished: 3600
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: demo-seed-orchestration-runs
|
|
spec:
|
|
initContainers:
|
|
- name: wait-for-orchestrator-migration
|
|
image: busybox:1.36
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
echo "⏳ Waiting 30 seconds for orchestrator-migration to complete..."
|
|
sleep 30
|
|
- name: wait-for-orchestrator-service
|
|
image: curlimages/curl:latest
|
|
command:
|
|
- sh
|
|
- -c
|
|
- |
|
|
echo "Waiting for orchestrator-service to be ready..."
|
|
until curl -f http://orchestrator-service.bakery-ia.svc.cluster.local:8000/health/ready > /dev/null 2>&1; do
|
|
echo "orchestrator-service not ready yet, waiting..."
|
|
sleep 5
|
|
done
|
|
echo "orchestrator-service is ready!"
|
|
containers:
|
|
- name: seed-orchestration-runs
|
|
image: bakery/orchestrator-service:latest
|
|
command: ["python", "/app/scripts/demo/seed_demo_orchestration_runs.py"]
|
|
env:
|
|
- name: ORCHESTRATOR_DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: database-secrets
|
|
key: ORCHESTRATOR_DATABASE_URL
|
|
- name: DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: database-secrets
|
|
key: ORCHESTRATOR_DATABASE_URL
|
|
- name: DEMO_MODE
|
|
value: "production"
|
|
- name: LOG_LEVEL
|
|
value: "INFO"
|
|
resources:
|
|
requests:
|
|
memory: "512Mi"
|
|
cpu: "200m"
|
|
limits:
|
|
memory: "1Gi"
|
|
cpu: "1000m"
|
|
restartPolicy: OnFailure
|
|
serviceAccountName: demo-seed-sa
|