dcbot/k8s/base/jobs.yml
Dawid Wysokiński d94b7bcbed
All checks were successful
continuous-integration/drone/push Build is passing
feat: add a new cmd - group add (#2)
Reviewed-on: #2
2022-10-03 05:19:33 +00:00

30 lines
714 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_DSN
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: db-dsn
resources:
requests:
cpu: 50m
memory: 64Mi
limits:
cpu: 150m
memory: 128Mi
restartPolicy: Never