9905abd9b4
Co-authored-by: Copilot <copilot@github.com>
16 lines
341 B
YAML
16 lines
341 B
YAML
kind: PersistentVolume
|
|
apiVersion: v1
|
|
metadata:
|
|
name: immich-library-pv
|
|
labels:
|
|
app: immich
|
|
spec:
|
|
capacity:
|
|
storage: 50Gi # Adjust the storage size as needed
|
|
storageClassName: nfs
|
|
accessModes:
|
|
- ReadWriteMany
|
|
nfs:
|
|
path: /export/fastData/immichLibrary # Static path on the NFS server
|
|
server: 192.168.178.166
|