k3s/namespaces/apps/gotenburg/patches/deployment.yaml

34 lines
804 B
YAML
Raw Normal View History

2025-01-31 10:33:56 -05:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: app
spec:
template:
spec:
containers:
- name: gotenburg
image: docker.io/gotenberg/gotenberg:8.7
imagePullPolicy: IfNotPresent
ports:
- containerPort: 3000
name: web
livenessProbe:
httpGet:
scheme: HTTP
path: /health
port: web
initialDelaySeconds: 60
periodSeconds: 10
readinessProbe:
httpGet:
scheme: HTTP
path: /health
port: web
initialDelaySeconds: 30
periodSeconds: 10
startupProbe:
httpGet:
scheme: HTTP
path: /health
port: web