aboutsummaryrefslogtreecommitdiff
path: root/roles/photos/files/postgres/templates/pv.yaml
blob: 14b5aa24d87dee18d5703df6d79628689456dd20 (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-db-pv"
  labels:
    app: "immich-db-pv"
spec:
  storageClassName: nfs
  capacity:
    storage: 10Gi
  accessModes:
    - ReadWriteMany
  nfs:
    server: {{ .Values.nfs.server }}
    path:  {{ .Values.nfs.path }}
    readOnly: false