From 55298a51cb0cc5e68c5a43869f2f32b899d3a622 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Tue, 22 Apr 2025 17:29:46 -0500 Subject: init --- roles/photos/files/postgres/templates/pv.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 roles/photos/files/postgres/templates/pv.yaml (limited to 'roles/photos/files/postgres/templates/pv.yaml') diff --git a/roles/photos/files/postgres/templates/pv.yaml b/roles/photos/files/postgres/templates/pv.yaml new file mode 100644 index 0000000..14b5aa2 --- /dev/null +++ b/roles/photos/files/postgres/templates/pv.yaml @@ -0,0 +1,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 -- cgit