From f09df7388ee74aa91b25ed98c63e644b99000409 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 24 Nov 2025 17:08:18 +0100 Subject: [PATCH] Bump Helm chart version and update user IDs for Paperless AI Updated the version of the Paperless AI Helm chart from 0.1.3 to 0.1.4 to reflect subsequent changes. The environment variables PUID and PGID have been modified from 1000 and 2000 to 0, respectively. This change is made to simplify permissions in the context of the deployment, ensuring that the application runs with root privileges, which might be necessary for certain operations. Additionally, the resource requests and limits sections have been commented out to allow for flexibility in resource allocation based on deployment needs. Ensure that when deploying, appropriate resource constraints are defined externally if required. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 9287632..ffc2f1c 100644 --- a/charts/paperless-ai/Chart.yaml +++ b/charts/paperless-ai/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: paperless-ai description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration. -version: 0.1.3 +version: 0.1.4 appVersion: 3.0.9 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index 817e0da..9a290cc 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -53,8 +53,8 @@ service: targetPort: 3000 env: - PUID: 1000 - PGID: 2000 + PUID: 0 # 1000 + PGID: 0 # 2000 PAPERLESS_AI_PORT: 3000 RAG_SERVICE_URL: http://localhost:8000 RAG_SERVICE_ENABLED: true @@ -98,13 +98,13 @@ autoscaling: targetCPUUtilizationPercentage: 80 # Ressourcenanforderungen und -limits für den Container. -resources: - limits: - cpu: 300m - memory: 704Mi - requests: - cpu: 100m - memory: 256Mi +resources: {} +# limits: +# cpu: 300m +# memory: 704Mi +# requests: +# cpu: 100m +# memory: 256Mi # Node-Selector für die Pod-Platzierung. nodeSelector: {}