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.
This commit is contained in:
@ -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.8.0
|
version: 0.1.0
|
||||||
appVersion: 3.0.7
|
appVersion: 3.0.7
|
||||||
keywords:
|
keywords:
|
||||||
- paperless-ai
|
- paperless-ai
|
||||||
|
@ -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: "default"
|
storageClassName: ""
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 2Gi
|
size: 1Gi
|
||||||
|
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
|
Reference in New Issue
Block a user