feat(documentation): Kavita documentation and config tweaks for generic use
This commit is contained in:
parent
931d1d8752
commit
7c8a584b75
3 changed files with 53 additions and 19 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue