This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
people/src/helm/dimail/templates/deployment.yaml
Quentin BEY 010d3674de 🧑‍💻(tilt) add dimail
This adds dimail to the tilt kube deployment
2025-01-17 17:53:14 +01:00

28 lines
606 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: dimail
labels:
app: dimail
spec:
replicas: 1
selector:
matchLabels:
app: dimail
template:
metadata:
labels:
app: dimail
spec:
containers:
- name: dimail
command: ["/bin/sh", "-c", "/opt/dimail-api/start-dev.sh"]
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
ports:
- containerPort: 8000
env:
- name: DIMAIL_MODE
value: FAKE
- name: DIMAIL_JWT_SECRET
value: fake_jwt_secret