wetalk/k8s/deployment.yml
ordinarthur 503e658f03
Some checks failed
Build & Deploy / build-and-deploy (push) Failing after 16s
feat: We Talk — podcast communautaire PWA
2026-04-12 11:45:29 +02:00

42 lines
911 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: wetalk
namespace: wetalk
spec:
replicas: 1
selector:
matchLabels:
app: wetalk
template:
metadata:
labels:
app: wetalk
spec:
containers:
- name: wetalk
image: git.arthurbarre.fr/ordinarthur/wetalk:latest
ports:
- containerPort: 80
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 30
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 10
resources:
requests:
memory: "32Mi"
cpu: "10m"
limits:
memory: "64Mi"
cpu: "100m"
imagePullSecrets:
- name: gitea-registry