Upload files to "apps/calibre-web-gitops"

This commit is contained in:
2025-11-26 02:17:48 +00:00
parent 2884eefbb7
commit 561f16d377
5 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: calibre-web
namespace: calibre-web
spec:
replicas: 1
selector:
matchLabels:
app: calibre-web
template:
metadata:
labels:
app: calibre-web
spec:
containers:
- name: calibre-web
image: lscr.io/linuxserver/calibre-web:latest
ports:
- containerPort: 8083
volumeMounts:
- name: config
mountPath: /config
- name: books
mountPath: /books
volumes:
- name: config
persistentVolumeClaim:
claimName: calibre-config
- name: books
persistentVolumeClaim:
claimName: calibre-books