From a5a977cb5f9140ecfc713cade921dc5120e37f0f Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 16:56:12 +0200 Subject: [PATCH] Update Paperless AI Helm Chart to version 0.1.2 Updated the Paperless AI Helm chart to version 0.1.2 to reflect recent changes and improvements. The service configuration has been modified to use port 3000 instead of 30000, aligning with the standard configuration, which improves consistency and avoids potential port conflicts. Additionally, the tags for indexed documents have been changed to "ai-indexed" to better reflect the artificial intelligence-related capabilities. No breaking changes were introduced, but it is important to note the updated port configuration, which may require adjustments in related deployments. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 12afe40..1011759 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.1 +version: 0.1.2 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index 7fff22e..817e0da 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -33,7 +33,7 @@ systemPrompt: |- "language": "en/de/es/..." } processPredefinedDocuments: "no" -tags: "indexed,indexed2" +tags: "ai-indexed,ai-indexed2" replicaCount: 1 @@ -49,13 +49,13 @@ serviceAccount: service: type: ClusterIP - port: 30000 - targetPort: 30000 + port: 3000 + targetPort: 3000 env: PUID: 1000 PGID: 2000 - PAPERLESS_AI_PORT: 30000 + PAPERLESS_AI_PORT: 3000 RAG_SERVICE_URL: http://localhost:8000 RAG_SERVICE_ENABLED: true