Files
kubernetes/manifests/artemis/ntfy/deployment.yaml
Daniël Groothuis a8964422f7
All checks were successful
Validate K8s manifests / validate-manifests (push) Successful in 3s
Validate K8s manifests / scan-secrets (push) Successful in 3m13s
chore(ntfy): Added Ntfy for Notifications
2025-10-23 23:03:06 +02:00

34 lines
654 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ntfy
spec:
selector:
matchLabels:
app: ntfy
template:
metadata:
labels:
app: ntfy
spec:
containers:
- name: ntfy
image: binwiederhier/ntfy
args: ["serve"]
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
name: http
volumeMounts:
- name: config
mountPath: "/etc/ntfy"
readOnly: true
volumes:
- name: config
configMap:
name: ntfy