bootstrap (#1)
All checks were successful
Deploy / deploy (push) Successful in 11s

Reviewed-on: #1
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #1.
This commit is contained in:
2026-04-06 15:28:24 +02:00
committed by t.behrendt
parent a9935624e7
commit e822a0d53f
12 changed files with 229 additions and 48 deletions

View File

@@ -0,0 +1,34 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: broker
namespace: paperless
spec:
replicas: 1
selector:
matchLabels:
app: broker
template:
metadata:
labels:
app: broker
spec:
nodeSelector:
kubernetes.io/hostname: k3sh0
containers:
- name: redis
image: docker.io/library/redis:7
volumeMounts:
- name: data
mountPath: /data
ports:
- containerPort: 6379
resources:
limits:
cpu: 250m
memory: 512Mi
volumes:
- name: data
hostPath:
path: /mnt/longhorn1/svc/paperless/main/broker/data
type: Directory