Reset git history for making manifests public

This commit is contained in:
2026-05-31 22:25:38 +02:00
commit 3dbb863df7
411 changed files with 42163 additions and 0 deletions

53
shelfmark/shelfmark.yaml Normal file
View File

@@ -0,0 +1,53 @@
apiVersion: apps/v1
kind: StatefulSet
metadata:
namespace: shelfmark
name: shelfmark
spec:
replicas: 1
selector:
matchLabels:
app: shelfmark
serviceName: shelfmark
template:
metadata:
labels:
app: shelfmark
spec:
restartPolicy: Always
terminationGracePeriodSeconds: 10
containers:
- name: shelfmark
image: ghcr.io/calibrain/shelfmark:latest
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 200m
memory: 256Mi
volumeMounts:
- name: config
mountPath: /config
- name: books
mountPath: /books
subPath: Books
- name: downloads
mountPath: /downloads
ports:
- containerPort: 8084
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
volumes:
- name: config
persistentVolumeClaim:
claimName: shelfmark-pvc
- name: books
persistentVolumeClaim:
claimName: shelfmark-books
- name: downloads
persistentVolumeClaim:
claimName: shelfmark-downloads