Bump version to 0.8.0 and update persistence settings
All checks were successful
Build Helm Chart / helm-package (push) Successful in 3s

This commit updates the Helm chart for Paperless AI from version
0.7.0 to 0.8.0, aligning it with the new app version 3.0.7. The
persistent storage configuration is modified by enabling the
storageClassName and changing its value to "default". Additionally,
the size of the persistent volume claim has been increased from 1Gi
to 2Gi to better accommodate data storage needs. These updates are
necessary to ensure compatibility with the latest application
requirements and to enhance the performance of persistent storage.
No breaking changes are introduced with this update.
This commit is contained in:
2025-07-07 11:53:42 +02:00
parent 199ceeddf8
commit 6d0764947b
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v2 apiVersion: v2
name: paperless-ai name: paperless-ai
description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration. description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration.
version: 0.7.0 version: 0.8.0
appVersion: 3.0.7 appVersion: 3.0.7
keywords: keywords:
- paperless-ai - paperless-ai

View File

@ -62,9 +62,9 @@ env:
# Konfiguration für persistente Speicherung (Persistent Volume Claim). # Konfiguration für persistente Speicherung (Persistent Volume Claim).
persistence: persistence:
enabled: true enabled: true
storageClassName: "" storageClassName: "default"
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 1Gi size: 2Gi
livenessProbe: livenessProbe:
initialDelaySeconds: 30 initialDelaySeconds: 30