Update appVersion and add public images directory
All checks were successful
Build Helm Chart / helm-package (push) Successful in 5s

Updated the appVersion in Chart.yaml from 3.0.9 to 3.0.10 to
reflect the latest version of Paperless AI. In the deployment.yaml,
added a new volume mount for a public images directory at
'/app/public/images' with a size limit of 100Mi. This change
ensures that the application has a dedicated space for public
images, which can help in organizing image storage and manage
resources more effectively. No breaking changes are introduced
with this update.
This commit is contained in:
2025-11-26 06:07:46 +01:00
parent 8e15b8630d
commit 724a609c9c
2 changed files with 6 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ apiVersion: v2
name: paperless-ai
description: Ein Helm Chart für Paperless AI, basierend auf der Docker Compose Konfiguration.
version: 0.1.7
appVersion: 3.0.9
appVersion: 3.0.10
keywords:
- paperless-ai
- document-management

View File

@@ -58,6 +58,8 @@ spec:
volumeMounts:
- name: logs-dir
mountPath: /app/logs
- name: public-images-dir
mountPath: /app/public/images
{{- if .Values.persistence.enabled }}
- name: paperless-ai-data # Name des Volumes, das gemountet werden soll.
mountPath: /app/data # Der Pfad im Container, an dem das Volume gemountet wird.
@@ -78,6 +80,9 @@ spec:
{{- end }}
volumes:
- name: public-images-dir
emptyDir:
sizeLimit: 100Mi
- name: logs-dir
emptyDir:
sizeLimit: 100Mi