From c843b3697c9b2ca6ec5005d824ed65cb2bb0b93e Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Sun, 23 Nov 2025 12:01:36 +0100 Subject: [PATCH] Remove Chart.lock and update values.yaml for persistence In this commit, the `Chart.lock` file for the `paperless-ngx` chart has been deleted, which typically signifies a change in dependencies or a reset of the chart environment. This may be necessary when dependencies have been altered or are no longer needed. Additionally, the `values.yaml` file was modified to uncomment and standardize the persistence volume configuration parameters. The `storageClass`, `accessMode`, and `size` fields for multiple persisted volumes (data, media, export, consume) were adjusted to enable the volumes in a clearer format. This change improves the --- charts/paperless-ngx/Chart.lock | 15 --------------- charts/paperless-ngx/values.yaml | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 25 deletions(-) delete mode 100644 charts/paperless-ngx/Chart.lock diff --git a/charts/paperless-ngx/Chart.lock b/charts/paperless-ngx/Chart.lock deleted file mode 100644 index b7c47ee..0000000 --- a/charts/paperless-ngx/Chart.lock +++ /dev/null @@ -1,15 +0,0 @@ -dependencies: -- name: common - repository: https://bjw-s.github.io/helm-charts - version: 1.5.1 -- name: postgresql - repository: https://charts.bitnami.com/bitnami - version: 14.0.5 -- name: mariadb - repository: https://charts.bitnami.com/bitnami - version: 20.1.1 -- name: redis - repository: https://charts.bitnami.com/bitnami - version: 20.7.0 -digest: sha256:393ade0c071a39f76cc62844ef6d14d85eeb674f099de016e1adac207f04d643 -generated: "2025-02-04T16:09:39.211839317Z" diff --git a/charts/paperless-ngx/values.yaml b/charts/paperless-ngx/values.yaml index 99e8560..6da2f3f 100644 --- a/charts/paperless-ngx/values.yaml +++ b/charts/paperless-ngx/values.yaml @@ -18,8 +18,8 @@ controllers: tag: 2.20.0 # -- Environment variables [[ref]](https://docs.paperless-ngx.com/configuration/) # @default -- See [values.yaml](./values.yaml) - # -- Set the resource requests / limits for the container. - resources: {} + # -- Set the resource requests / limits for the container. + resources: {} env: # -- Set the container timezone @@ -56,25 +56,25 @@ persistence: enabled: false retain: true mountPath: /usr/src/paperless/data - # storageClass: "" - # accessMode: ReadWriteOnce - # size: 1Gi + storageClass: "" + accessMode: ReadWriteOnce + size: 1Gi # -- Configure media volume settings for the chart under this key. # @default -- See [values.yaml](./values.yaml) media: enabled: false retain: true mountPath: /usr/src/paperless/media - # storageClass: "" - # accessMode: ReadWriteOnce - # size: 8Gi + storageClass: "" + accessMode: ReadWriteOnce + size: 8Gi # -- Configure export volume settings for the chart under this key. # @default -- See [values.yaml](./values.yaml) export: enabled: true retain: true mountPath: /usr/src/paperless/export - # storageClass: "" + storageClass: "" accessMode: ReadWriteOnce size: 1Gi # -- Configure consume volume settings for the chart under this key. @@ -83,7 +83,7 @@ persistence: enabled: true retain: true mountPath: /usr/src/paperless/consume - # storageClass: "" + storageClass: "" accessMode: ReadWriteOnce size: 4Gi