Compare commits
6 Commits
6d0764947b
...
main
Author | SHA1 | Date | |
---|---|---|---|
a5a977cb5f | |||
62c8e8b9c1 | |||
2527c8668c | |||
c2937e2437 | |||
6d714483ff | |||
9c999158ec |
@ -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.2
|
||||||
appVersion: 3.0.7
|
appVersion: 3.0.7
|
||||||
keywords:
|
keywords:
|
||||||
- paperless-ai
|
- paperless-ai
|
||||||
|
@ -33,7 +33,7 @@ systemPrompt: |-
|
|||||||
"language": "en/de/es/..."
|
"language": "en/de/es/..."
|
||||||
}
|
}
|
||||||
processPredefinedDocuments: "no"
|
processPredefinedDocuments: "no"
|
||||||
tags: "indexed,indexed2"
|
tags: "ai-indexed,ai-indexed2"
|
||||||
|
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
@ -49,34 +49,32 @@ serviceAccount:
|
|||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 30000
|
port: 3000
|
||||||
targetPort: 30000
|
targetPort: 3000
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PUID: 1000
|
PUID: 1000
|
||||||
PGID: 2000
|
PGID: 2000
|
||||||
PAPERLESS_AI_PORT: 30000
|
PAPERLESS_AI_PORT: 3000
|
||||||
RAG_SERVICE_URL: http://localhost:8000
|
RAG_SERVICE_URL: http://localhost:8000
|
||||||
RAG_SERVICE_ENABLED: true
|
RAG_SERVICE_ENABLED: true
|
||||||
|
|
||||||
# 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
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /
|
||||||
# path: /health
|
|
||||||
port: http
|
port: http
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 30
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /
|
||||||
# path: /health
|
|
||||||
port: http
|
port: http
|
||||||
|
|
||||||
# Sicherheitskontext-Einstellungen für Pod und Container.
|
# Sicherheitskontext-Einstellungen für Pod und Container.
|
||||||
@ -103,7 +101,7 @@ autoscaling:
|
|||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 300m
|
cpu: 300m
|
||||||
memory: 640Mi
|
memory: 704Mi
|
||||||
requests:
|
requests:
|
||||||
cpu: 100m
|
cpu: 100m
|
||||||
memory: 256Mi
|
memory: 256Mi
|
||||||
|
Reference in New Issue
Block a user