56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
# Enhanced migration job for auth service with automatic table creation
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: auth-migration
|
|
namespace: bakery-ia
|
|
labels:
|
|
app.kubernetes.io/name: auth-migration
|
|
app.kubernetes.io/component: migration
|
|
app.kubernetes.io/part-of: bakery-ia
|
|
spec:
|
|
backoffLimit: 3
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/name: auth-migration
|
|
app.kubernetes.io/component: migration
|
|
spec:
|
|
initContainers:
|
|
- name: wait-for-db
|
|
image: postgres:15-alpine
|
|
command: ["sh", "-c", "until pg_isready -h auth-db-service -p 5432; do sleep 2; done"]
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
containers:
|
|
- name: migrate
|
|
image: bakery/auth-service:dev
|
|
command: ["python", "/app/shared/scripts/run_migrations.py", "auth"]
|
|
env:
|
|
- name: AUTH_DATABASE_URL
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: database-secrets
|
|
key: AUTH_DATABASE_URL
|
|
- name: DB_FORCE_RECREATE
|
|
valueFrom:
|
|
configMapKeyRef:
|
|
name: bakery-config
|
|
key: DB_FORCE_RECREATE
|
|
optional: true
|
|
- name: LOG_LEVEL
|
|
value: "INFO"
|
|
resources:
|
|
requests:
|
|
memory: "256Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|
|
restartPolicy: OnFailure
|