dcbot/k8s/base/jobs.yml
Dawid Wysokiński 91d2405912
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore: add DB_MAX_IDLE_CONNECTIONS to twhelp-dcbot-migrations-job
2022-11-05 07:20:14 +01:00

32 lines
783 B
YAML

apiVersion: batch/v1
kind: Job
metadata:
name: twhelp-dcbot-migrations-job
spec:
template:
spec:
containers:
- name: twhelp-dcbot-migrations
image: dcbot
args: ["db", "migrate"]
env:
- name: APP_MODE
value: development
- name: DB_MAX_OPEN_CONNECTIONS
value: "1"
- name: DB_MAX_IDLE_CONNECTIONS
value: "1"
- name: DB_DSN
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: db-dsn
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 150m
memory: 128Mi
restartPolicy: Never