dcbot/k8s/overlays/prod/bot.yml
Dawid Wysokiński 8e46fe38d3
All checks were successful
continuous-integration/drone/push Build is passing
feat(ci/cd): add deploy pipelines
2022-10-29 09:06:41 +02:00

34 lines
931 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: "8"
- name: BOT_TOKEN
valueFrom:
secretKeyRef:
name: twhelp-dcbot-secret
key: token
- name: TWHELP_URL
value: "https://tribalwarshelp.com"
- name: BOT_MAX_GROUPS_PER_SERVER
value: "5"
- name: BOT_MAX_MONITORS_PER_GROUP
value: "10"