feat(documentation): Kavita documentation and config tweaks for generic use

This commit is contained in:
Fishandchips321 2026-04-15 14:40:17 +01:00
parent 931d1d8752
commit 7c8a584b75
3 changed files with 53 additions and 19 deletions

View file

@ -27,27 +27,26 @@ spec:
mountPath: /kavita/config
- name: kavita-data
mountPath: /kavita/library
# readinessProbe:
# httpGet:
# path: /api/health
# port: http
# failureThreshold: 5
# periodSeconds: 10
# livenessProbe:
# httpGet:
# path: /api/health
# port: http
# failureThreshold: 5
# periodSeconds: 10
readinessProbe:
httpGet:
path: /api/health
port: http
failureThreshold: 5
periodSeconds: 10
livenessProbe:
httpGet:
path: /api/health
port: http
failureThreshold: 5
periodSeconds: 10
volumes:
- name: kavita-config
# persistentVolumeClaim:
# claimName: kavita-config
hostPath:
path: /zfs/docker/kavita
path: <kavita config dir>
- name: kavita-data
hostPath:
path: /mnt/nfs/books
persistentVolumeClaim:
claimName: kavita-data
readOnly: true
---
apiVersion: v1
kind: PersistentVolumeClaim
@ -60,3 +59,15 @@ spec:
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: kavita-data
spec:
resources:
requests:
storage: 5Gi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce