From 0951b5173bb1e853b2372425d0ad2db30db46df6 Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Sat, 21 Feb 2026 13:52:36 +0100 Subject: [PATCH] add new immich library volume --- apps/immich/immich-library.yaml | 46 +++++++++++++++++++++++++++++++++ apps/immich/kustomization.yaml | 1 + 2 files changed, 47 insertions(+) create mode 100644 apps/immich/immich-library.yaml diff --git a/apps/immich/immich-library.yaml b/apps/immich/immich-library.yaml new file mode 100644 index 0000000..a5e8192 --- /dev/null +++ b/apps/immich/immich-library.yaml @@ -0,0 +1,46 @@ +--- +apiVersion: local.openebs.io/v1alpha1 +kind: LVMVolume +metadata: + labels: + kubernetes.io/nodename: anapistula-delrosalae + name: immich-library-lvmhdd + namespace: openebs +spec: + capacity: 150Gi + ownerNodeID: anapistula-delrosalae + shared: "yes" + thinProvision: "no" + vgPattern: ^openebs-hdd$ + volGroup: openebs-hdd +--- +kind: PersistentVolume +apiVersion: v1 +metadata: + name: immich-library-lvmhdd +spec: + capacity: + storage: 150Gi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + storageClassName: hdd-lvmpv + volumeMode: Filesystem + csi: + driver: local.csi.openebs.io + fsType: btrfs + volumeHandle: immich-library-lvmhdd +--- +kind: PersistentVolumeClaim +apiVersion: v1 +metadata: + name: library-lvmhdd + namespace: immich +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 150Gi + storageClassName: hdd-lvmpv + volumeName: immich-library-lvmhdd diff --git a/apps/immich/kustomization.yaml b/apps/immich/kustomization.yaml index 7ccc629..711db86 100644 --- a/apps/immich/kustomization.yaml +++ b/apps/immich/kustomization.yaml @@ -6,4 +6,5 @@ resources: - redis.yaml - postgres-password.yaml - postgres-cluster.yaml + - immich-library.yaml - release.yaml