Compare commits

..

2 Commits

Author SHA1 Message Date
6d714483ff Bump version to 0.2.0 and update health checks
All checks were successful
Build Helm Chart / helm-package (push) Successful in 3s
Updated the Helm chart version for Paperless AI from 0.1.0 to
0.2.0 to reflect the latest enhancements. The liveness and
readiness probes were updated to switch the check path from
root (/) to /health, which is more appropriate for health
checks as it ensures the application is correctly reporting
its status. This change helps improve the reliability of
service monitoring and health reporting for deployment
environments.
2025-07-07 12:36:20 +02:00
9c999158ec Update Paperless AI chart version and persistence settings
The version of the Paperless AI Helm chart has been updated from
0.8.0 to 0.1.0 in the Chart.yaml file to reflect a new release cycle.

Additionally, the storageClassName in the values.yaml file has been
modified from "default" to an empty string to allow for a more flexible
storage backend configuration. Furthermore, the size of the persistent
volume has been decreased from 2Gi to 1Gi to optimize resource allocation
and usage based on current application needs.

These changes are necessary to ensure that the chart aligns with the
latest application updates and resource requirements.
2025-07-07 12:05:07 +02:00
2 changed files with 7 additions and 7 deletions

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.8.0
version: 0.2.0
appVersion: 3.0.7
keywords:
- paperless-ai

View File

@ -62,21 +62,21 @@ env:
# Konfiguration für persistente Speicherung (Persistent Volume Claim).
persistence:
enabled: true
storageClassName: "default"
storageClassName: ""
accessMode: ReadWriteOnce
size: 2Gi
size: 1Gi
livenessProbe:
initialDelaySeconds: 30
httpGet:
path: /
# path: /health
# path: /
path: /health
port: http
readinessProbe:
initialDelaySeconds: 30
httpGet:
path: /
# path: /health
# path: /
path: /health
port: http
# Sicherheitskontext-Einstellungen für Pod und Container.