Gluttony-Cluster/uptime-kuma/uptime-kuma-deployment.yaml
Tyler Perkins 836687a2b8
All checks were successful
continuous-integration/drone/push Build is passing
Add uptime kuma
2023-10-21 16:15:34 -04:00

29 lines
563 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: uptime-kuma
namespace: uptime-kuma-ns
spec:
replicas: 1
selector:
matchLabels:
app: uptime-kuma
template:
metadata:
labels:
app: uptime-kuma
spec:
volumes:
- name: data-mount
persistentVolumClaim:
claimName: uptime-kuma-pvc
containers:
- name: uptime-kuma
image: louislam/uptime-kuma
ports:
- containerPort: 3001
volumeMounts:
- mountPath: '/app/data'
name: data-mount