50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: demo-session-migration
|
|
namespace: bakery-ia
|
|
labels:
|
|
app.kubernetes.io/name: demo-session-migration
|
|
app.kubernetes.io/component: migration
|
|
app.kubernetes.io/part-of: bakery-ia
|
|
spec:
|
|
backoffLimit: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: demo-session-migration
|
|
app.kubernetes.io/component: migration
|
|
spec:
|
|
initContainers:
|
|
- name: wait-for-db
|
|
image: postgres:15-alpine
|
|
command: ["sh", "-c", "until pg_isready -h demo-session-db-service -p 5432; do sleep 2; done"]
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
containers:
|
|
- name: migrate
|
|
image: bakery/demo-session-service:latest
|
|
imagePullPolicy: Never
|
|
command: ["python", "/app/shared/scripts/run_migrations.py", "demo_session"]
|
|
env:
|
|
- name: DEMO_SESSION_DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: database-secrets
|
|
key: DEMO_SESSION_DATABASE_URL
|
|
- name: LOG_LEVEL
|
|
value: "INFO"
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|
|
restartPolicy: OnFailure
|