diff options
author | Aaditya Dhruv <[email protected]> | 2025-04-22 17:29:46 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-05-01 20:19:51 -0500 |
commit | 55298a51cb0cc5e68c5a43869f2f32b899d3a622 (patch) | |
tree | 50d271288502bcff6f0a5133ce0839d883ee8ef7 /roles/photos/files/postgres/templates/pvc.yaml |
init
Diffstat (limited to 'roles/photos/files/postgres/templates/pvc.yaml')
-rw-r--r-- | roles/photos/files/postgres/templates/pvc.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/roles/photos/files/postgres/templates/pvc.yaml b/roles/photos/files/postgres/templates/pvc.yaml new file mode 100644 index 0000000..4b3aca7 --- /dev/null +++ b/roles/photos/files/postgres/templates/pvc.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: immich-db-pvc +spec: + storageClassName: nfs + accessModes: + - ReadWriteMany + resources: + requests: + storage: 10Gi + selector: + matchLabels: + app: "immich-db-pv" |