Kuma/kubernetes/uptime-kuma/deployment.yml
Carl Dominik Sander 21640e1bbe changed to tag 1
2021-08-18 17:58:17 +02:00

42 lines
904 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
labels:
component: uptime-kuma
name: uptime-kuma
spec:
selector:
matchLabels:
component: uptime-kuma
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
component: uptime-kuma
spec:
containers:
- name: uptime-kuma
image: louislam/uptime-kuma:1
ports:
- containerPort: 3001
volumeMounts:
- mountPath: /app/data
name: uptime-kuma-storage
livenessProbe:
exec:
command:
- node
- extra/healthcheck.js
readinessProbe:
httpGet:
path: /
port: 3001
scheme: HTTP
volumes:
- name: uptime-kuma-storage
persistentVolumeClaim:
claimName: uptime-kuma-pvc