Files
infra-prod/deploy/outline-wiki/deploy.yaml
2025-04-12 23:51:48 +02:00

47 lines
972 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: outline
namespace: outline-wiki
labels:
app: outline
spec:
replicas: 3
selector:
matchLabels:
app: outline
template:
metadata:
labels:
app: outline
spec:
containers:
- name: outline
image: outlinewiki/outline:0.82.0
ports:
- containerPort: 8089
envFrom:
- secretRef:
name: outline-secrets
env:
- name: PORT
value: "8089"
- name: HOST
value: "0.0.0.0"
readinessProbe:
httpGet:
path: /
port: 8089
scheme: HTTP
initialDelaySeconds: 10
periodSeconds: 5
livenessProbe:
httpGet:
path: /
port: 8089
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 10