agendas/k8s/deployment.yaml
Victor Lacasse-Beaudoin e11206c492 k8s: ajouter fichiers de déploiement de base
Inclut des manifests pour le Deployment, le Service et un example de
Secret ConfigMap.
2025-03-13 18:52:39 -04:00

45 lines
1 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: agendas-deployment
labels:
app: agendas
spec:
replicas: 1
selector:
matchLabels:
app: agendas
template:
metadata:
labels:
app: agendas
spec:
containers:
- name: agendas
image: git.agecem.com/bottin/agendas:latest
command: ['agendas', '--config', '/etc/agendas/config.yaml']
imagePullPolicy: Always
ports:
- containerPort: 3333
volumeMounts:
- name: config-secret
mountPath: '/etc/agendas/'
readOnly: true
- name: localtime
mountPath: /etc/localtime
readOnly: true
volumes:
- name: config-secret
secret:
secretName: agendas-config-secret
items:
- key: config.yaml
path: config.yaml
- key: cert.pem
path: cert.pem
- key: key.pem
path: key.pem
- name: localtime
hostPath:
path: /etc/localtime
type: File