Update appVersion and add public images directory
All checks were successful
Build Helm Chart / helm-package (push) Successful in 5s
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:
@@ -2,7 +2,7 @@ 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.1.7
|
version: 0.1.7
|
||||||
appVersion: 3.0.9
|
appVersion: 3.0.10
|
||||||
keywords:
|
keywords:
|
||||||
- paperless-ai
|
- paperless-ai
|
||||||
- document-management
|
- document-management
|
||||||
|
|||||||
@@ -58,6 +58,8 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: logs-dir
|
- name: logs-dir
|
||||||
mountPath: /app/logs
|
mountPath: /app/logs
|
||||||
|
- name: public-images-dir
|
||||||
|
mountPath: /app/public/images
|
||||||
{{- if .Values.persistence.enabled }}
|
{{- if .Values.persistence.enabled }}
|
||||||
- name: paperless-ai-data # Name des Volumes, das gemountet werden soll.
|
- name: paperless-ai-data # Name des Volumes, das gemountet werden soll.
|
||||||
mountPath: /app/data # Der Pfad im Container, an dem das Volume gemountet wird.
|
mountPath: /app/data # Der Pfad im Container, an dem das Volume gemountet wird.
|
||||||
@@ -78,6 +80,9 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
|
- name: public-images-dir
|
||||||
|
emptyDir:
|
||||||
|
sizeLimit: 100Mi
|
||||||
- name: logs-dir
|
- name: logs-dir
|
||||||
emptyDir:
|
emptyDir:
|
||||||
sizeLimit: 100Mi
|
sizeLimit: 100Mi
|
||||||
|
|||||||
Reference in New Issue
Block a user