Files
Kubernetes.K3s.installLog/services/Gotify/deployment-gotify.yaml

31 lines
587 B
YAML
Raw Normal View History

2024-01-02 17:31:53 +11:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: gotify
namespace: gotify
labels:
app: gotify
spec:
replicas: 1
selector:
matchLabels:
app: gotify
template:
metadata:
labels:
app: gotify
spec:
containers:
- name: gotify
image: gotify/server
ports:
- name: web
containerPort: 80
volumeMounts:
- mountPath: /app/data
2025-07-09 13:01:38 +10:00
name: csismb-gotify-data
2024-01-02 17:31:53 +11:00
volumes:
2025-07-09 13:01:38 +10:00
- name: csismb-gotify-data
2024-01-02 17:31:53 +11:00
persistentVolumeClaim:
2025-07-09 13:01:38 +10:00
claimName: csismb-gotify-data