From 199ceeddf83a7f31f3095be0c455e833496b343f Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Mon, 7 Jul 2025 10:46:46 +0200 Subject: [PATCH] Update version to 0.7.0 and add RAG service configuration This commit updates the version of the Paperless AI Helm Chart from 0.6.0 to 0.7.0, reflecting new changes and improvements in the software. Additionally, two new environment variables have been added to the values.yaml file: - `RAG_SERVICE_URL`, which sets the URL for the RAG service, defaulting to http://localhost:8000. - `RAG_SERVICE_ENABLED`, a boolean flag to enable or disable the RAG service, set to true by default. These changes are necessary to incorporate the RAG service in the deployment configuration, enhancing the functionality of Paperless AI. No breaking changes are introduced with this update. --- charts/paperless-ai/Chart.yaml | 2 +- charts/paperless-ai/values.yaml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/paperless-ai/Chart.yaml b/charts/paperless-ai/Chart.yaml index 642ebc7..2957ef5 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.6.0 +version: 0.7.0 appVersion: 3.0.7 keywords: - paperless-ai diff --git a/charts/paperless-ai/values.yaml b/charts/paperless-ai/values.yaml index 237e848..cd9595e 100644 --- a/charts/paperless-ai/values.yaml +++ b/charts/paperless-ai/values.yaml @@ -56,6 +56,8 @@ env: PUID: 1000 PGID: 2000 PAPERLESS_AI_PORT: 30000 + RAG_SERVICE_URL: http://localhost:8000 + RAG_SERVICE_ENABLED: true # Konfiguration für persistente Speicherung (Persistent Volume Claim). persistence: