aboutsummaryrefslogtreecommitdiff
path: root/roles/photos/files/core/templates/pv.yaml
blob: cacdcf91cb634321daed56f81114a1a757515255 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
apiVersion: v1
kind: PersistentVolume
metadata:
  name: "immich-pv"
  labels:
    app: "immich-pv"
spec:
  storageClassName: nfs
  capacity:
    storage: 200Gi
  accessModes:
    - ReadWriteMany
  nfs:
    server: {{ .Values.nfs.server }}
    path: {{ .Values.nfs.path }}
    readOnly: false