sessions/k8s/overlays/prod/api.yml
Dawid Wysokiński d24d43bfd2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore: prod env setup
2022-11-27 09:11:30 +01:00

25 lines
615 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: sessions-api-deployment
spec:
template:
spec:
containers:
- name: sessions-api
image: sessions
env:
- name: APP_MODE
value: production
- name: DB_DSN
valueFrom:
secretKeyRef:
name: sessions-secret
key: db-dsn
- name: DB_MAX_OPEN_CONNECTIONS
value: "5"
- name: DB_MAX_IDLE_CONNECTIONS
value: "5"
- name: API_SWAGGER_ENABLED
value: "false"