dcbot/k8s/base/jobs.yml
Dawid Wysokiński 119c8028a1
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build was killed
feat: use goose as a db migration tool (#105)
Reviewed-on: #105
2023-06-09 06:32:46 +00:00

28 lines
656 B
YAML

apiVersion: batch/v1
kind: Job
metadata:
name: twhelp-dcbot-migrations-job
spec:
template:
spec:
containers:
- name: twhelp-dcbot-migrations
image: dcbot-migrations
args: ["up"]
env:
- name: GOOSE_DRIVER
value: "postgres"
- name: GOOSE_DBSTRING
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: db-dsn
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 150m
memory: 128Mi
restartPolicy: Never