dcbot/k8s/overlays/prod/bot.yml
Dawid Wysokiński 88f7608db7
All checks were successful
continuous-integration/drone/push Build is passing
refactor: new bun config
2022-11-05 07:16:39 +01:00

34 lines
935 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: twhelp-dcbot-deployment
spec:
template:
spec:
containers:
- name: twhelp-dcbot
image: dcbot
env:
- name: APP_MODE
value: production
- name: DB_DSN
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: db-dsn
- name: DB_MAX_OPEN_CONNECTIONS
value: "15"
- name: DB_MAX_IDLE_CONNECTIONS
value: "7"
- name: BOT_TOKEN
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: token
- name: TWHELP_URL
value: "http://twhelp-api-service:9234"
- name: BOT_MAX_GROUPS_PER_SERVER
value: "5"
- name: BOT_MAX_MONITORS_PER_GROUP
value: "10"