Update Paperless AI Helm chart version and configuration
All checks were successful
Build Helm Chart / helm-package (push) Successful in 4s

Updated the Paperless AI Helm chart version from 0.1.4-test1 to 0.1.5
to reflect the latest changes. The environment variable configuration
for PUID and PGID has been updated from 0 to 1000 and 2000, respectively,
to align with common user and group IDs used within Docker containers.
Additionally, the security context for the pod is now enabled to
enhance security practices by running the container with the
specified user and group IDs. This change may impact existing
deployments that relied on the previous settings.
This commit is contained in:
2025-11-25 14:02:08 +01:00
parent 2d67af32a2
commit 68d1b04223
3 changed files with 4 additions and 5 deletions

View File

@@ -3,7 +3,6 @@ on:
push:
branches:
- main
- patch-papaerless-ai
paths:
- "charts/paperless-ai/Chart.yaml"

View File

@@ -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.4-test1
version: 0.1.5
appVersion: 3.0.9
keywords:
- paperless-ai

View File

@@ -53,8 +53,8 @@ service:
targetPort: 3000
env:
PUID: 0 # 1000
PGID: 0 # 2000
PUID: 1000
PGID: 2000
PAPERLESS_AI_PORT: 3000
RAG_SERVICE_URL: http://localhost:8000
RAG_SERVICE_ENABLED: true
@@ -79,7 +79,7 @@ readinessProbe:
# Sicherheitskontext-Einstellungen für Pod und Container.
securityContext:
enabled: false
enabled: true
pod:
runAsUser: 1000
runAsGroup: 2000